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