• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 presented
9  * by the TestSelector.
10  * @see TestSelector
11  */
12 public interface TestCollector {
13 	/**
14 	 * Returns an enumeration of Strings with qualified class names
15 	 */
collectTests()16 	public Enumeration collectTests();
17 }
18