Package org.suiterunner

Provides classes and interfaces that simplify the job of building conformance test kits and unit tests for Java APIs.

See:
          Description

Interface Summary
Reporter Interface implemented by classes whose instances collect the results of a running suite of tests and presents those results in some way to the user.
Rerunnable Interface implemented by objects that can rerun tests or other entities.
 

Class Summary
Report Class used to send reports to a reporter.
Runner Application that runs a suite of tests.
Suite A suite consisting of zero to many test methods and zero to many sub-Suites.
 

Exception Summary
TestFailedException Exception that indicates a test failed.
 

Package org.suiterunner Description

Provides classes and interfaces that simplify the job of building conformance test kits and unit tests for Java APIs. For more information, see:

http://www.artima.com/suiterunner/index.html

To get started with this API, familiarize yourself with class Suite and class Runner. The basic way to use this API is to define subclasses of class Suite that contain test methods, then run the Suite subclasses with Runner. More advanced uses of this API include creating classes that implement Reporter that report test results in some custom way.



Copyright (C) 2001-2003 Artima Software, Inc. All rights reserved.