Searched refs:forByte (Results 1 – 5 of 5) sorted by relevance
369 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()
62 when(mock.forByte(anyByte())).thenReturn("3"); in shouldNotAcceptNullInAllAnyPrimitiveWrapperMatchers()71 assertEquals(null, mock.forByte(null)); in shouldNotAcceptNullInAllAnyPrimitiveWrapperMatchers()
460 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()
59 String forByte(Byte value); in forByte() method
104 public String forByte(Byte value) { in forByte() method in MethodsImpl