HomeSort by relevance Sort by last modified time
    Searched refs:booleanObjectReturningMethod (Results 1 - 9 of 9) sorted by null

  /external/mockito/src/test/java/org/mockitousage/customization/
BDDMockitoTest.java 255 then(mock).should().booleanObjectReturningMethod();
260 mock.booleanObjectReturningMethod();
262 then(mock).should().booleanObjectReturningMethod();
273 mock.booleanObjectReturningMethod();
284 mock.booleanObjectReturningMethod();
287 then(mock).should().booleanObjectReturningMethod();
297 mock.booleanObjectReturningMethod();
301 then(mock).should(inOrder).booleanObjectReturningMethod();
310 mock.booleanObjectReturningMethod();
312 then(mock).should(inOrder).booleanObjectReturningMethod();
    [all...]
  /external/mockito/src/test/java/org/mockitousage/junitrunner/
ModellingVerboseMockitoTest.java 37 when(mock.booleanObjectReturningMethod()).thenReturn(false);
VerboseMockitoRunnerTest.java 58 when(mock.booleanObjectReturningMethod()).thenReturn(false);
  /external/mockito/src/test/java/org/mockitousage/stubbing/
ReturningDefaultValuesTest.java 49 assertEquals(new Boolean(false), mock.booleanObjectReturningMethod());
StubbingUsingDoReturnTest.java 243 doReturn("foo").when(mock).booleanObjectReturningMethod();
246 assertThat(e).hasMessageContaining("String cannot be returned by booleanObjectReturningMethod()" +
248 "booleanObjectReturningMethod() should return Boolean");
  /external/mockito/src/test/java/org/mockitousage/junitrule/
StrictJUnitRuleTest.java 151 mock2.booleanObjectReturningMethod();
  /external/mockito/src/test/java/org/mockitousage/stacktrace/
ModellingDescriptiveMessagesTest.java 49 mock.booleanObjectReturningMethod();
  /external/mockito/src/test/java/org/mockitousage/
IMethods.java 15 Boolean booleanObjectReturningMethod();
MethodsImpl.java 16 public Boolean booleanObjectReturningMethod() {

Completed in 179 milliseconds