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