Package org.jmock.api
Interface ExpectationErrorTranslator
-
- All Known Implementing Classes:
AssertionErrorTranslator
,IdentityExpectationErrorTranslator
,JUnit3ErrorTranslator
public interface ExpectationErrorTranslator
Translates expectation errors into error type used by a specific testing framework.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Error
translate(ExpectationError e)
Translates the givenExpectationError
into an error type compatible with another testing framework.
-
-
-
Method Detail
-
translate
java.lang.Error translate(ExpectationError e)
Translates the givenExpectationError
into an error type compatible with another testing framework.- Parameters:
e
- TheExpectationError
to translate.- Returns:
- An error that is compatible with another testing framework and contains the same message and stack trace as e.
-
-