| |
|
| java.lang.Object org.quilt.framework.QuiltTest org.quilt.frontend.ant.BatchTest
BatchTest | public class BatchTest extends QuiltTest (Code) | | Stores Ant filesets and convert them to QuiltTests.
author: Jim Dixon |
Constructor Summary | |
public | BatchTest(Project p) One-arg constructor. |
Method Summary | |
public void | addFileSet(FileSet fs) Method used by Ant to add filesets. | public void | unbatch(Scheduler sch) Converts the fileset names into QuiltTests and adds them to the
list of tests maintained by the scheduler. |
BatchTest | public BatchTest(Project p)(Code) | | One-arg constructor.
Parameters: p - The project that the QuiltTask is in. |
addFileSet | public void addFileSet(FileSet fs)(Code) | | Method used by Ant to add filesets. Ant first calls
createBatchTest, then in a second pass calls this method
to add filesets.
Parameters: fs - One of possibly many filesets within the batch test |
unbatch | public void unbatch(Scheduler sch)(Code) | | Converts the fileset names into QuiltTests and adds them to the
list of tests maintained by the scheduler. This can only be
done once; after the tests are unbatched, the vector of batch
tests is deleted.
Parameters: sch - Scheduler responsible for maintaining list of testsand scheduling the actual running of tests. |
|
|
|