Searched refs:booleanReturningMethod (Results 1 – 11 of 11) sorted by relevance
24 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()
67 verify(mock.booleanReturningMethod()); in shouldScreamWhenWholeMethodPassedToVerify()
42 when(mock.booleanReturningMethod()).thenReturn(true); in should_stubbing_be_treated_as_interaction()44 mock.booleanReturningMethod(); in should_stubbing_be_treated_as_interaction()
36 assertEquals(false, mock.booleanReturningMethod()); in shouldReturnAllKindsOfPrimitives()
71 mock.booleanReturningMethod(); in secondInteraction()
343 mock.booleanReturningMethod(); in should_print_interactions_on_mock_when_ordinary_verification_fail()
61 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()
29 mock.booleanReturningMethod(); in shouldResetOngoingStubbingSoThatMoreMeaningfulExceptionsAreRaised()
70 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()
13 boolean booleanReturningMethod(); in booleanReturningMethod() method
12 public boolean booleanReturningMethod() { in booleanReturningMethod() method in MethodsImpl