aboutsummaryrefslogtreecommitdiff
path: root/src/junit/runner/TestCollector.java
blob: 3ac9d9eeeda273e5267e496c5a18d04a9a0da0b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package junit.runner;

import java.util.*;


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