org.junit.runner.notification
Class Failure
java.lang.Objectorg.junit.runner.notification.Failure
public class Failure
extends java.lang.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(Description description, Throwable thrownException)- Constructs a
Failure with the given description and exception.
|
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
String toString
public @Override String toString()
getDescription
public Description getDescription()
- the raw description of the context of the failure.
getException
public Throwable getException()
getMessage
public String getMessage()
Convenience method
- the message of the thrown exception
getTestHeader
public String getTestHeader()
- a user-understandable label for the test
getTrace
public String getTrace()
Convenience method
- the printed form of the exception