blob: 180d460681c15e944ad9b74fe7502f09e259a914 [file] [log] [blame]
package junit.runner;
import java.util.*;
import junit.framework.*;
/**
* 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();
}