Home
last modified time | relevance | path

Searched refs:booleanObjectReturningMethod (Results 1 – 9 of 9) sorted by relevance

/external/mockito/src/test/java/org/mockitousage/customization/
DBDDMockitoTest.java255 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 …]
/external/mockito/src/test/java/org/mockitousage/junitrunner/
DModellingVerboseMockitoTest.java37 when(mock.booleanObjectReturningMethod()).thenReturn(false); in shouldLogUnusedStubbingWarningWhenTestFails()
DVerboseMockitoRunnerTest.java58 when(mock.booleanObjectReturningMethod()).thenReturn(false); in _test()
/external/mockito/src/test/java/org/mockitousage/stubbing/
DReturningDefaultValuesTest.java49 assertEquals(new Boolean(false), mock.booleanObjectReturningMethod()); in shouldReturnTheSameValuesForWrapperClasses()
DStubbingUsingDoReturnTest.java243 doReturn("foo").when(mock).booleanObjectReturningMethod(); in should_detect_invalid_return_type()
/external/mockito/src/test/java/org/mockitousage/junitrule/
DStrictJUnitRuleTest.java157 mock2.booleanObjectReturningMethod(); in unused_stubs_with_multiple_mocks()
/external/mockito/src/test/java/org/mockitousage/stacktrace/
DModellingDescriptiveMessagesTest.java50 mock.booleanObjectReturningMethod(); in shouldPointOutInteractionsOnMockWhenOrdinaryVerificationFails()
/external/mockito/src/test/java/org/mockitousage/
DIMethods.java15 Boolean booleanObjectReturningMethod(); in booleanObjectReturningMethod() method
DMethodsImpl.java16 public Boolean booleanObjectReturningMethod() { in booleanObjectReturningMethod() method in MethodsImpl