Home
last modified time | relevance | path

Searched refs:forByte (Results 1 – 5 of 5) sorted by relevance

/external/mockito/src/test/java/org/mockitousage/verification/
DDescriptiveMessagesWhenVerificationFailsTest.java369 mock.forByte((byte) 25); in should_print_method_name_and_arguments_of_other_interactions_with_different_methods()
385 mock.forByte((byte) 25); in should_print_method_name_and_arguments_of_other_interactions_of_same_method()
386 mock.forByte((byte) 12); in should_print_method_name_and_arguments_of_other_interactions_of_same_method()
388 verify(mock).forByte((byte) 42); in should_print_method_name_and_arguments_of_other_interactions_of_same_method()
/external/mockito/src/test/java/org/mockitousage/matchers/
DAnyXMatchersAcceptNullsTest.java62 when(mock.forByte(anyByte())).thenReturn("3"); in shouldNotAcceptNullInAllAnyPrimitiveWrapperMatchers()
71 assertEquals(null, mock.forByte(null)); in shouldNotAcceptNullInAllAnyPrimitiveWrapperMatchers()
DMatchersTest.java460 when(mock.forByte(isNull(Byte.class))).thenReturn("ok"); in null_matcher_for_primitive_wrappers()
469 assertEquals("ok", mock.forByte(null)); in null_matcher_for_primitive_wrappers()
/external/mockito/src/test/java/org/mockitousage/
DIMethods.java59 String forByte(Byte value); in forByte() method
DMethodsImpl.java104 public String forByte(Byte value) { in forByte() method in MethodsImpl