Home
last modified time | relevance | path

Searched refs:booleanReturningMethod (Results 1 – 11 of 11) sorted by relevance

/external/mockito/src/test/java/org/mockitousage/misuse/
DCleaningUpPotentialStubbingTest.java24 mock.booleanReturningMethod(); in shouldResetOngoingStubbingOnVerify()
25 verify(mock).booleanReturningMethod(); in shouldResetOngoingStubbingOnVerify()
33 mock.booleanReturningMethod(); in shouldResetOngoingStubbingOnInOrder()
35 inOrder.verify(mock).booleanReturningMethod(); in shouldResetOngoingStubbingOnInOrder()
41 mock.booleanReturningMethod(); in shouldResetOngoingStubbingOnDoReturn()
42 doReturn(false).when(mock).booleanReturningMethod(); in shouldResetOngoingStubbingOnDoReturn()
DDescriptiveMessagesOnMisuseTest.java67 verify(mock.booleanReturningMethod()); in shouldScreamWhenWholeMethodPassedToVerify()
/external/mockito/src/test/java/org/mockitousage/stubbing/
DBasicStubbingTest.java42 when(mock.booleanReturningMethod()).thenReturn(true); in should_stubbing_be_treated_as_interaction()
44 mock.booleanReturningMethod(); in should_stubbing_be_treated_as_interaction()
DReturningDefaultValuesTest.java36 assertEquals(false, mock.booleanReturningMethod()); in shouldReturnAllKindsOfPrimitives()
/external/mockito/src/test/java/org/mockitousage/verification/
DOrdinaryVerificationPrintsAllInteractionsTest.java71 mock.booleanReturningMethod(); in secondInteraction()
DDescriptiveMessagesWhenVerificationFailsTest.java343 mock.booleanReturningMethod(); in should_print_interactions_on_mock_when_ordinary_verification_fail()
/external/mockito/src/test/java/org/mockitousage/basicapi/
DMocksSerializationForAnnotationTest.java61 when(imethodsMock.booleanReturningMethod()).thenReturn(true); in should_allow_mock_and_boolean_value_to_serializable()
68 assertTrue(readObject.booleanReturningMethod()); in should_allow_mock_and_boolean_value_to_serializable()
DResetTest.java29 mock.booleanReturningMethod(); in shouldResetOngoingStubbingSoThatMoreMeaningfulExceptionsAreRaised()
DMocksSerializationTest.java70 when(mock.booleanReturningMethod()).thenReturn(true); in should_allow_mock_and_boolean_value_to_serializable()
77 assertTrue(readObject.booleanReturningMethod()); in should_allow_mock_and_boolean_value_to_serializable()
/external/mockito/src/test/java/org/mockitousage/
DIMethods.java13 boolean booleanReturningMethod(); in booleanReturningMethod() method
DMethodsImpl.java12 public boolean booleanReturningMethod() { in booleanReturningMethod() method in MethodsImpl