# Print output for @column tags ?> TestFailure - Android SDK | Android Developers

Most visited

Recently visited

TestFailure

public class TestFailure
extends Object

java.lang.Object
   ↳ junit.framework.TestFailure


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()

Inherited methods

Fields

fFailedTest

protected Test fFailedTest

fThrownException

protected Throwable fThrownException

Public constructors

TestFailure

public TestFailure (Test failedTest, 
                Throwable thrownException)

Constructs a TestFailure with the given test and exception.

Parameters
failedTest Test

thrownException Throwable

Public methods

exceptionMessage

public String exceptionMessage ()

Returns
String

failedTest

public Test failedTest ()

Gets the failed test.

Returns
Test

isFailure

public boolean isFailure ()

Returns
boolean

thrownException

public Throwable thrownException ()

Gets the thrown exception.

Returns
Throwable

toString

public String toString ()

Returns a short description of the failure.

Returns
String a string representation of the object.

trace

public String trace ()

Returns
String