A C D E F G I M O P R S T V

A

addSubSuite(Suite) - Method in class org.suiterunner.Suite
Append the Suite passed as subSuite to the end of this Suite object's list of sub-Suites.

C

clearSubSuites() - Method in class org.suiterunner.Suite
Clear this object's list of sub-Suites.

D

dispose() - Method in interface org.suiterunner.Reporter
Release any non-memory finite resources, such as file handles, held by this Reporter.

E

execute(Reporter) - Method in class org.suiterunner.Suite
Execute this suite object.
executeSubSuites(Reporter) - Method in class org.suiterunner.Suite
Execute zero to many of this suite object's sub-Suites.
executeTestMethods(Reporter) - Method in class org.suiterunner.Suite
Execute zero to many of this suite object's test methods.

F

fail() - Static method in class org.suiterunner.Suite
Throws TestFailedException to indicate a test failed.
fail(String) - Static method in class org.suiterunner.Suite
Throws TestFailedException, with the passed String message as the exception's detail message, to indicate a test failed.
fail(String, Throwable) - Static method in class org.suiterunner.Suite
Throws TestFailedException, with the passed String message as the exception's detail message and Throwable cause, to indicate a test failed.
fail(Throwable) - Static method in class org.suiterunner.Suite
Throws TestFailedException, with the passed Throwable cause, to indicate a test failed.

G

getCause() - Method in class org.suiterunner.TestFailedException
Returns the cause of this TestFailedException, or null if the cause is nonexistent or unknown.
getDate() - Method in class org.suiterunner.Report
Get the Date embedded in this Report.
getMessage() - Method in class org.suiterunner.Report
Get a String message.
getName() - Method in class org.suiterunner.Report
Get a String name of the entity about which this Report was generated.
getRerunnable() - Method in class org.suiterunner.Report
Get a Rerunnable that can be used to rerun the test or other entity reported about by this Report, or null if the test or other entity cannot be rerun.
getSource() - Method in class org.suiterunner.Report
Get the object that generated this report.
getSubSuites() - Method in class org.suiterunner.Suite
Get an unmodifiable List of this Suite object's sub-Suites.
getSuiteName() - Method in class org.suiterunner.Suite
Get a user-friendly suite name for this Suite object.
getTestCount() - Method in class org.suiterunner.Suite
Get the total number of tests that are expected to run when this suite object's execute method is invoked.
getTestName(String) - Method in class org.suiterunner.Suite
Get a user-friendly test name for this Suite object's test method, whose simple String name is passed as testMethodName.
getThread() - Method in class org.suiterunner.Report
Get the Thread about whose activity this Report was generated.
getThrowable() - Method in class org.suiterunner.Report
Get a Throwable that indicated the condition reported by this Report.

I

infoProvided(Report) - Method in interface org.suiterunner.Reporter
Provides information that is not appropriate to report via any other Reporter method.
initCause(Throwable) - Method in class org.suiterunner.TestFailedException
Initializes the cause of this TestFailedException to the specified value.
isStopRequested() - Static method in class org.suiterunner.Suite
Gets the boolean stopRequested property.

M

main(String[]) - Static method in class org.suiterunner.Runner
App that runs a suite of tests.

O

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

P

PRESENT_INFO_PROVIDED - Static variable in interface org.suiterunner.Reporter
Configuration Character that indicates infoProvided method invocations should be presented to the user.
PRESENT_RUN_ABORTED - Static variable in interface org.suiterunner.Reporter
Configuration Character that indicates runAborted method invocations should be presented to the user.
PRESENT_RUN_COMPLETED - Static variable in interface org.suiterunner.Reporter
Configuration Character that indicates runCompleted method invocations should be presented to the user.
PRESENT_RUN_STARTING - Static variable in interface org.suiterunner.Reporter
Configuration Character that indicates runStarting method invocations should be presented to the user.
PRESENT_RUN_STOPPED - Static variable in interface org.suiterunner.Reporter
Configuration Character that indicates runComleted method invocations should be presented to the user.
PRESENT_SUITE_ABORTED - Static variable in interface org.suiterunner.Reporter
Configuration Character that indicates suiteAborted method invocations should be presented to the user.
PRESENT_SUITE_COMPLETED - Static variable in interface org.suiterunner.Reporter
Configuration Character that indicates suiteCompleted method invocations should be presented to the user.
PRESENT_SUITE_STARTING - Static variable in interface org.suiterunner.Reporter
Configuration Character that indicates suiteStarting method invocations should be presented to the user.
PRESENT_TEST_FAILED - Static variable in interface org.suiterunner.Reporter
Configuration Character that indicates testFailed method invocations should be presented to the user.
PRESENT_TEST_STARTING - Static variable in interface org.suiterunner.Reporter
Configuration Character that indicates testStarting method invocations should be presented to the user.
PRESENT_TEST_SUCCEEDED - Static variable in interface org.suiterunner.Reporter
Configuration Character that indicates testSucceeded method invocations should be presented to the user.

R

Report - class org.suiterunner.Report.
Class used to send reports to a reporter.
Report(Object, String, String) - Constructor for class org.suiterunner.Report
Constructs a new Report with specified source, name, and message.
Report(Object, String, String, Rerunnable) - Constructor for class org.suiterunner.Report
Constructs a new Report with specified source, name, message, and rerunnable.
Report(Object, String, String, Throwable) - Constructor for class org.suiterunner.Report
Constructs a new Report with specified source, name, message, and throwable.
Report(Object, String, String, Throwable, Rerunnable) - Constructor for class org.suiterunner.Report
Constructs a new Report with specified source, name, message, throwable, and rerunnable.
Report(Object, String, String, Throwable, Rerunnable, Thread, Date) - Constructor for class org.suiterunner.Report
Constructs a new Report with specified source, name, message, throwable, rerunnable, thread, and date.
Reporter - interface org.suiterunner.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.
rerun(Reporter, ClassLoader) - Method in interface org.suiterunner.Rerunnable
Rerun a test or other entity, reporting results to the specified Reporter.
Rerunnable - interface org.suiterunner.Rerunnable.
Interface implemented by objects that can rerun tests or other entities.
runAborted(Report) - Method in interface org.suiterunner.Reporter
Indicates a runner encountered an error while attempting to run a suite of tests.
runCompleted() - Method in interface org.suiterunner.Reporter
Indicates a runner has completed running a suite of tests.
Runner - class org.suiterunner.Runner.
Application that runs a suite of tests.
runStarting(int) - Method in interface org.suiterunner.Reporter
Indicates a runner is about run a suite of tests.
runStopped() - Method in interface org.suiterunner.Reporter
Indicates a runner has stopped running a suite of tests prior to completion, likely because of a stop request.

S

setConfiguration(Set) - Method in interface org.suiterunner.Reporter
Configures this Reporter with a specified Set of configuration Characters.
setStopRequested(boolean) - Static method in class org.suiterunner.Suite
Sets the stopRequested property to the specified boolean value.
setUpFixture() - Method in class org.suiterunner.Suite
Setup the test fixture for this object's test methods.
Suite - class org.suiterunner.Suite.
A suite consisting of zero to many test methods and zero to many sub-Suites.
Suite() - Constructor for class org.suiterunner.Suite
Construct a new Suite object with no sub-Suites.
Suite(List) - Constructor for class org.suiterunner.Suite
Create a new Suite object with passed sub-Suites.
suiteAborted(Report) - Method in interface org.suiterunner.Reporter
Indicates the execution of a suite of tests has aborted, likely because of an error, prior to completion.
suiteCompleted(Report) - Method in interface org.suiterunner.Reporter
Indicates a suite of tests has completed executing.
suiteStarting(Report) - Method in interface org.suiterunner.Reporter
Indicates a suite of tests is about to start executing.

T

tearDownFixture() - Method in class org.suiterunner.Suite
Cleanup the test fixture for this object's test methods.
testFailed(Report) - Method in interface org.suiterunner.Reporter
Indicates a suite (or other entity) has completed running a test that failed.
TestFailedException - exception org.suiterunner.TestFailedException.
Exception that indicates a test failed.
TestFailedException() - Constructor for class org.suiterunner.TestFailedException
Create a TestFailedException with no detail message.
TestFailedException(String) - Constructor for class org.suiterunner.TestFailedException
Create a TestFailedException with a detail message.
TestFailedException(String, Throwable) - Constructor for class org.suiterunner.TestFailedException
Create a TestFailedException with the specified detail message and cause.
TestFailedException(Throwable) - Constructor for class org.suiterunner.TestFailedException
Create a TestFailedException with the specified cause.
testStarting(Report) - Method in interface org.suiterunner.Reporter
Indicates a suite (or other entity) is about to start a test.
testSucceeded(Report) - Method in interface org.suiterunner.Reporter
Indicates a suite (or other entity) has completed running a test that succeeded.

V

verify(boolean) - Static method in class org.suiterunner.Suite
Verify that a boolean condition is true.
verify(boolean, String) - Static method in class org.suiterunner.Suite
Verify that a boolean condition, described in String message, is true.

A C D E F G I M O P R S T V

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