Home
last modified time | relevance | path

Searched refs:fourArgumentMethod (Results 1 – 3 of 3) sorted by relevance

/external/mockito/src/test/java/org/mockitousage/stubbing/
DStubbingWithAdditionalAnswersTest.java184 given(iMethods.fourArgumentMethod(anyInt(), anyString(), anyString(), any(boolean[].class))) in can_return_based_on_strongly_typed_four_parameter_function()
187 target.fourArgumentMethod(i, s1, s2, a); in can_return_based_on_strongly_typed_four_parameter_function()
193 …assertThat(iMethods.fourArgumentMethod(1, "string1", "string2", booleanArray)).isEqualTo("answered… in can_return_based_on_strongly_typed_four_parameter_function()
194 verify(target, times(1)).fourArgumentMethod(1, "string1", "string2", booleanArray); in can_return_based_on_strongly_typed_four_parameter_function()
201 given(iMethods.fourArgumentMethod(anyInt(), anyString(), anyString(), any(boolean[].class))) in will_execute_a_void_based_on_strongly_typed_four_parameter_function()
204 target.fourArgumentMethod(i, s1, s2, a); in will_execute_a_void_based_on_strongly_typed_four_parameter_function()
210 iMethods.fourArgumentMethod(1, "string1", "string2", booleanArray); in will_execute_a_void_based_on_strongly_typed_four_parameter_function()
213 verify(target, times(1)).fourArgumentMethod(1, "string1", "string2", booleanArray); in will_execute_a_void_based_on_strongly_typed_four_parameter_function()
/external/mockito/src/test/java/org/mockitousage/
DIMethods.java133 String fourArgumentMethod(int valueOne, String valueTwo, String valueThree, boolean[] array); in fourArgumentMethod() method
DMethodsImpl.java252 …public String fourArgumentMethod(int valueOne, String valueTwo, String valueThree, boolean[] array… in fourArgumentMethod() method in MethodsImpl