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  * {@hide} - Not needed for 1.0 SDK
     11  */
     12 public interface TestCollector {
     13 	/**
     14 	 * Returns an enumeration of Strings with qualified class names
     15 	 */
     16 	public Enumeration collectTests();
     17 }
     18