1 package junit.runner;2 3 import java.util.Enumeration ;4 import junit.swingui.TestSelector;5 6 7 /**8 * Collects Test class names to be presented9 * by the TestSelector. 10 * @see TestSelector11 */12 public interface TestCollector {13 /**14 * Returns an enumeration of Strings with qualified class names15 */16 public Enumeration collectTests();17 }18