org.mockito.stubbing
A0
- type of the first argumentA1
- type of the second argumentA2
- type of the third argument@Incubating public interface VoidAnswer3<A0,A1,A2>
Example of stubbing a mock with this custom answer:
when(mock.someMethod(anyString(), anyInt(), anyString())).thenAnswer(new Answer<String, Integer, String>() {
void answer(String msg, Integer count, String another) {
throw new Exception(String.format(msg, another, count));
}
});
//Following will raise an exception with the message "ka-boom 3"
mock.someMethod("%s-boom %d", 3, "ka");
Answer