public class

TestFailure

extends Object
java.lang.Object
   ↳ junit.framework.TestFailure

Class Overview

A TestFailure collects a failed test together with the caught exception.

See Also

Summary

Fields
protected Test fFailedTest
protected Throwable fThrownException
Public Constructors
TestFailure(Test failedTest, Throwable thrownException)
Constructs a TestFailure with the given test and exception.
Public Methods
String exceptionMessage()
Test failedTest()
Gets the failed test.
boolean isFailure()
Throwable thrownException()
Gets the thrown exception.
String toString()
Returns a short description of the failure.
String trace()
[Expand]
Inherited Methods
From class java.lang.Object

Fields

protected Test fFailedTest

protected Throwable fThrownException

Public Constructors

public TestFailure (Test failedTest, Throwable thrownException)

Constructs a TestFailure with the given test and exception.

Public Methods

public String exceptionMessage ()

public Test failedTest ()

Gets the failed test.

public boolean isFailure ()

public Throwable thrownException ()

Gets the thrown exception.

public String toString ()

Returns a short description of the failure.

public String trace ()