Uses of Interface
junit.framework.Test

Packages that use Test
junit.awtui   
junit.extensions   
junit.framework   
junit.runner   
junit.swingui   
junit.textui   
junitx.framework   
 

Uses of Test in junit.awtui
 

Methods in junit.awtui with parameters of type Test
 void TestRunner.addError(Test test, java.lang.Throwable t)
           
 void TestRunner.addFailure(Test test, AssertionFailedError t)
           
 void TestRunner.endTest(Test test)
           
 void TestRunner.startTest(Test test)
           
 

Uses of Test in junit.extensions
 

Classes in junit.extensions that implement Test
 class ActiveTestSuite
          A TestSuite for active Tests.
 class ExceptionTestCase
          A TestCase that expects an Exception of class fExpected to be thrown.
 class RepeatedTest
          A Decorator that runs a test repeatedly.
 class TestDecorator
          A Decorator for Tests.
 class TestSetup
          A Decorator to set up and tear down additional fixture state.
 

Methods in junit.extensions that return Test
 Test TestDecorator.getTest()
           
 

Methods in junit.extensions with parameters of type Test
 void ActiveTestSuite.runTest(Test test, TestResult result)
           
 void ActiveTestSuite.runFinished(Test test)
           
 

Constructors in junit.extensions with parameters of type Test
TestDecorator(Test test)
           
RepeatedTest(Test test, int repeat)
           
TestSetup(Test test)
           
 

Uses of Test in junit.framework
 

Classes in junit.framework that implement Test
 class TestCase
          A test case defines the fixture to run multiple tests.
 class TestSuite
          A TestSuite is a Composite of Tests.
 

Methods in junit.framework that return Test
 Test TestSuite.testAt(int index)
          Returns the test at the given index
 Test TestFailure.failedTest()
          Gets the failed test.
 

Methods in junit.framework with parameters of type Test
 void TestSuite.addTest(Test test)
          Adds a test to the suite.
 void TestSuite.runTest(Test test, TestResult result)
           
 void TestListener.addError(Test test, java.lang.Throwable t)
          An error occurred.
 void TestListener.addFailure(Test test, AssertionFailedError t)
          A failure occurred.
 void TestListener.endTest(Test test)
          A test ended.
 void TestListener.startTest(Test test)
          A test started.
 void TestResult.addError(Test test, java.lang.Throwable t)
          Adds an error to the list of errors.
 void TestResult.addFailure(Test test, AssertionFailedError t)
          Adds a failure to the list of failures.
 void TestResult.endTest(Test test)
          Informs the result that a test was completed.
 void TestResult.runProtected(Test test, Protectable p)
          Runs a TestCase.
 void TestResult.startTest(Test test)
          Informs the result that a test will be started.
 

Constructors in junit.framework with parameters of type Test
TestFailure(Test failedTest, java.lang.Throwable thrownException)
          Constructs a TestFailure with the given test and exception.
 

Uses of Test in junit.runner
 

Methods in junit.runner that return Test
 Test BaseTestRunner.getTest(java.lang.String suiteClassName)
          Returns the Test corresponding to the given suite.
 

Uses of Test in junit.swingui
 

Methods in junit.swingui with parameters of type Test
 void TestRunner.addError(Test test, java.lang.Throwable t)
           
 void TestRunner.addFailure(Test test, AssertionFailedError t)
           
 void TestRunner.startTest(Test test)
           
 void TestRunner.endTest(Test test)
           
 void TestRunner.handleTestSelected(Test test)
           
 void TestRunContext.handleTestSelected(Test test)
          Handles the selection of a Test.
 

Uses of Test in junit.textui
 

Methods in junit.textui with parameters of type Test
 void TestRunner.addError(Test test, java.lang.Throwable t)
           
 void TestRunner.addFailure(Test test, AssertionFailedError t)
           
 TestResult TestRunner.doRun(Test suite, boolean wait)
           
 void TestRunner.startTest(Test test)
           
 void TestRunner.endTest(Test test)
           
static void TestRunner.run(Test suite)
          Runs a single test and collects its results.
static void TestRunner.runAndWait(Test suite)
          Runs a single test and waits until the user types RETURN.
 

Uses of Test in junitx.framework
 

Classes in junitx.framework that implement Test
 class PrivateTestCase
          PrivateTestCase is the parent class of all test cases you supply in order to test private code.