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