Searched refs:threeArgumentMethodWithStrings (Results 1 – 3 of 3) sorted by relevance
/external/mockito/src/test/java/org/mockitousage/stubbing/ |
D | StubbingWithAdditionalAnswersTest.java | 151 given(iMethods.threeArgumentMethodWithStrings(anyInt(), anyString(), anyString())) in can_return_based_on_strongly_typed_three_parameter_function() 154 target.threeArgumentMethodWithStrings(i, s1, s2); in can_return_based_on_strongly_typed_three_parameter_function() 159 …assertThat(iMethods.threeArgumentMethodWithStrings(1, "string1", "string2")).isEqualTo("answered"); in can_return_based_on_strongly_typed_three_parameter_function() 160 verify(target, times(1)).threeArgumentMethodWithStrings(1, "string1", "string2"); in can_return_based_on_strongly_typed_three_parameter_function() 167 given(iMethods.threeArgumentMethodWithStrings(anyInt(), anyString(), anyString())) in will_execute_a_void_based_on_strongly_typed_three_parameter_function() 170 target.threeArgumentMethodWithStrings(i, s1, s2); in will_execute_a_void_based_on_strongly_typed_three_parameter_function() 175 iMethods.threeArgumentMethodWithStrings(1, "string1", "string2"); in will_execute_a_void_based_on_strongly_typed_three_parameter_function() 178 verify(target, times(1)).threeArgumentMethodWithStrings(1, "string1", "string2"); in will_execute_a_void_based_on_strongly_typed_three_parameter_function()
|
/external/mockito/src/test/java/org/mockitousage/ |
D | IMethods.java | 131 String threeArgumentMethodWithStrings(int valueOne, String valueTwo, String valueThree); in threeArgumentMethodWithStrings() method
|
D | MethodsImpl.java | 248 public String threeArgumentMethodWithStrings(int valueOne, String valueTwo, String valueThree) { in threeArgumentMethodWithStrings() method in MethodsImpl
|