Skip to main content
summaryrefslogtreecommitdiffstats
blob: bd4837a2f4c8898e3e09ef074aa33056f30c595c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package junit.runner;

import java.util.*;


/**
 * Collects Test class names to be presented
 * by the TestSelector. 
 * @see TestSelector
 */
public interface TestCollector {
	/**
	 * Returns an enumeration of Strings with qualified class names
	 */
	public Enumeration collectTests();
}

Back to the top