TestCollector.java revision 2ad60cfc28e14ee8f0bb038720836a4696c478ad
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 */
11public interface TestCollector {
12    /**
13     * Returns an enumeration of Strings with qualified class names
14     */
15    public Enumeration collectTests();
16}
17