lejosunit.framework
Class TestFailure

java.lang.Object
  extended bylejosunit.framework.TestFailure

public class TestFailure
extends java.lang.Object

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

leJOSUnit changes:

Author:
Jochen Hiller
See Also:
TestResult

Constructor Summary
TestFailure(Test failedTest, java.lang.Throwable thrownException)
          Constructs a TestFailure with the given test and exception.
 
Method Summary
 Test failedTest()
          Gets the failed test.
 java.lang.Throwable thrownException()
          Gets the thrown exception.
 java.lang.String toString()
          Returns a short description of the failure.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

TestFailure

public TestFailure(Test failedTest,
                   java.lang.Throwable thrownException)
Constructs a TestFailure with the given test and exception.

Parameters:
failedTest - the failed test
thrownException - the thrown exception by the test case
Method Detail

failedTest

public Test failedTest()
Gets the failed test.

Returns:
the failed test

thrownException

public java.lang.Throwable thrownException()
Gets the thrown exception.

Returns:
the thrown exception

toString

public java.lang.String toString()
Returns a short description of the failure.

Returns:
a string representation of a test failure


Copyright (C) 2003 Jochen Hiller. All Rights Reserved.