Searched refs:booleanObjectReturningMethod (Results 1 – 9 of 9) sorted by relevance
255 then(mock).should().booleanObjectReturningMethod(); in should_fail_for_expected_behavior_that_did_not_happen()260 mock.booleanObjectReturningMethod(); in should_pass_for_expected_behavior_that_happened()262 then(mock).should().booleanObjectReturningMethod(); in should_pass_for_expected_behavior_that_happened()273 mock.booleanObjectReturningMethod(); in should_fail_when_mock_had_unwanted_interactions()284 mock.booleanObjectReturningMethod(); in should_fail_when_mock_had_more_interactions_than_expected()287 then(mock).should().booleanObjectReturningMethod(); in should_fail_when_mock_had_more_interactions_than_expected()297 mock.booleanObjectReturningMethod(); in should_pass_for_interactions_that_happened_in_correct_order()301 then(mock).should(inOrder).booleanObjectReturningMethod(); in should_pass_for_interactions_that_happened_in_correct_order()310 mock.booleanObjectReturningMethod(); in should_fail_for_interactions_that_were_in_wrong_order()312 then(mock).should(inOrder).booleanObjectReturningMethod(); in should_fail_for_interactions_that_were_in_wrong_order()[all …]
37 when(mock.booleanObjectReturningMethod()).thenReturn(false); in shouldLogUnusedStubbingWarningWhenTestFails()
58 when(mock.booleanObjectReturningMethod()).thenReturn(false); in _test()
49 assertEquals(new Boolean(false), mock.booleanObjectReturningMethod()); in shouldReturnTheSameValuesForWrapperClasses()
243 doReturn("foo").when(mock).booleanObjectReturningMethod(); in should_detect_invalid_return_type()
157 mock2.booleanObjectReturningMethod(); in unused_stubs_with_multiple_mocks()
50 mock.booleanObjectReturningMethod(); in shouldPointOutInteractionsOnMockWhenOrdinaryVerificationFails()
15 Boolean booleanObjectReturningMethod(); in booleanObjectReturningMethod() method
16 public Boolean booleanObjectReturningMethod() { in booleanObjectReturningMethod() method in MethodsImpl