1package junit.runner;
2
3import 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 */
12public interface TestCollector {
13    /**
14     * Returns an enumeration of Strings with qualified class names
15     */
16    public Enumeration collectTests();
17}
18