Uses of Interface
org.mockito.stubbing.Answer6
-
Packages that use Answer6 Package Description org.mockito Mockito is a mock library for java - seeMockito
class for usage.org.mockito.internal.stubbing.answers Answers for stubbed calls. -
-
Uses of Answer6 in org.mockito
Methods in org.mockito with parameters of type Answer6 Modifier and Type Method Description static <T,A,B,C,D,E,F>
Answer<T>AdditionalAnswers. answer(Answer6<T,A,B,C,D,E,F> answer)
Creates an answer from a functional interface - allows for a strongly typed answer to be created idiomatically in Java 8 -
Uses of Answer6 in org.mockito.internal.stubbing.answers
Methods in org.mockito.internal.stubbing.answers with parameters of type Answer6 Modifier and Type Method Description static <T,A,B,C,D,E,F>
Answer<T>AnswerFunctionalInterfaces. toAnswer(Answer6<T,A,B,C,D,E,F> answer)
Construct an answer from a six parameter answer interface
-