blob: 276e7faac06962317782acf8b736eaa5a8679653 [file] [log] [blame]
package junit.runner;
import java.util.Enumeration;
import junit.swingui.TestSelector;
/**
* Collects Test class names to be presented
* by the TestSelector.
* @see TestSelector
*/
public interface TestCollector {
/**
* Returns an enumeration of Strings with qualified class names
*/
public Enumeration collectTests();
}