Home
last modified time | relevance | path

Searched refs:twoArgumentMethod (Results 1 – 4 of 4) sorted by relevance

/external/mockito/src/test/java/org/mockitousage/verification/
DDescriptiveMessagesWhenVerificationFailsTest.java147 mock.twoArgumentMethod(1, 1); in should_print_actual_and_unverified_wanted_when_the_difference_is_about_arguments()
148 mock.twoArgumentMethod(2, 2); in should_print_actual_and_unverified_wanted_when_the_difference_is_about_arguments()
150 verify(mock).twoArgumentMethod(1, 1); in should_print_actual_and_unverified_wanted_when_the_difference_is_about_arguments()
152 verify(mock).twoArgumentMethod(2, 1000); in should_print_actual_and_unverified_wanted_when_the_difference_is_about_arguments()
188 mock.twoArgumentMethod(1, 2); in should_print_first_unexpected_invocation_when_verifying_zero_interactions()
216 verify(mock, atLeastOnce()).twoArgumentMethod(1, 2); in should_print_method_name_when_verifying_at_least_once()
226 verify(mock, atLeastOnce()).twoArgumentMethod(anyInt(), eq(100)); in should_print_method_when_matcher_used()
/external/mockito/src/test/java/org/mockitousage/matchers/
DInvalidUseOfMatchersTest.java127 .twoArgumentMethod(eq(73), in fails_with_NPE()
/external/mockito/src/test/java/org/mockitousage/
DIMethods.java135 void twoArgumentMethod(int one, int two); in twoArgumentMethod() method
DMethodsImpl.java256 public void twoArgumentMethod(int one, int two) { in twoArgumentMethod() method in MethodsImpl