Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

org.apache.batik.test
Class AbstractTestSuite  view AbstractTestSuite download AbstractTestSuite.java

java.lang.Object
  extended byorg.apache.batik.test.AbstractTestSuite
All Implemented Interfaces:
Test, TestSuite

public abstract class AbstractTestSuite
extends java.lang.Object
implements TestSuite

This class provides an implementation for the addTest method and a protected member to store the children Test instances.

Version:
$Id: AbstractTestSuite.java,v 1.3 2004/08/18 07:16:56 vhardy Exp $

Field Summary
protected  java.util.List children
          Stores the list of children Test instances.
 
Constructor Summary
AbstractTestSuite()
           
 
Method Summary
 void addTest(Test test)
          Adds a Test to the suite
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface org.apache.batik.test.TestSuite
getChildrenCount, getChildrenTests, removeTest
 
Methods inherited from interface org.apache.batik.test.Test
getId, getName, getParent, getQualifiedId, run, setId, setParent
 

Field Detail

children

protected java.util.List children
Stores the list of children Test instances.

Constructor Detail

AbstractTestSuite

public AbstractTestSuite()
Method Detail

addTest

public void addTest(Test test)
Adds a Test to the suite

Specified by:
addTest in interface TestSuite