org.junit.runner.notification
Class Failure
java.lang.Object
org.junit.runner.notification.Failure
public class Failure
- extends Object
A Failure
holds a description of the failed test and the
exception that was thrown while running it. In most cases the Description
will be of a single test. However, if problems are encountered while constructing the
test (for example, if a BeforeClass
method is not static), it may describe
something other than a single test.
Failure
public Failure(Description description,
Throwable thrownException)
- Constructs a
Failure
with the given description and exception.
- 参数:
description
- a Description
of the test that failedthrownException
- the exception that was thrown while running the test
getTestHeader
public String getTestHeader()
- 返回:
- a user-understandable label for the test
getDescription
public Description getDescription()
- 返回:
- the raw description of the context of the failure.
getException
public Throwable getException()
- 返回:
- the exception thrown
toString
public String toString()
- 重写:
toString
in class Object
getTrace
public String getTrace()
- Convenience method
- 返回:
- the printed form of the exception
getMessage
public String getMessage()
- Convenience method
- 返回:
- the message of the thrown exception