KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > junit > runner > TestCollector


1 package junit.runner;
2
3 import java.util.Enumeration JavaDoc;
4 import junit.swingui.TestSelector;
5
6
7 /**
8  * Collects Test class names to be presented
9  * by the TestSelector.
10  * @see TestSelector
11  */

12 public interface TestCollector {
13     /**
14      * Returns an enumeration of Strings with qualified class names
15      */

16     public Enumeration JavaDoc collectTests();
17 }
18
Popular Tags