Class MoreAnswers
java.lang.Object
org.opendaylight.yangtools.testutils.mockito.MoreAnswers
More
Answer
variants.- Author:
- Michael Vorburger
- See Also:
-
Answers
AdditionalAnswers
-
Method Summary
Modifier and TypeMethodDescriptionstatic <T> org.mockito.stubbing.Answer<T>
Returns Mockito Answer (default) which throws an UnstubbedMethodException.static <T> org.mockito.stubbing.Answer<T>
Returns Mockito Answer (default) which forwards method calls or throws an UnstubbedMethodException.
-
Method Details
-
realOrException
public static <T> org.mockito.stubbing.Answer<T> realOrException()Returns Mockito Answer (default) which forwards method calls or throws an UnstubbedMethodException.- Type Parameters:
T
- answer type- Returns:
- An answer
- See Also:
-
exception
public static <T> org.mockito.stubbing.Answer<T> exception()Returns Mockito Answer (default) which throws an UnstubbedMethodException.- Type Parameters:
T
- answer type- Returns:
- An answer
- See Also:
-