summaryrefslogtreecommitdiff
path: root/dx/src/junit/runner/TestCollector.java
blob: 73efb4e39317851f395baf31c274d9ed8f97711d (plain)
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();
}