blob: 3ac9d9eeeda273e5267e496c5a18d04a9a0da0b9 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001package junit.runner;
2
3import java.util.*;
4
5
6/**
7 * Collects Test class names to be presented
Brett Chabotf1253cd2012-01-30 11:29:54 -08008 * by the TestSelector.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08009 * @see TestSelector
10 * {@hide} - Not needed for 1.0 SDK
11 */
12public interface TestCollector {
Brett Chabotf1253cd2012-01-30 11:29:54 -080013 /**
14 * Returns an enumeration of Strings with qualified class names
15 */
16 public Enumeration collectTests();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080017}