aboutsummaryrefslogtreecommitdiff
path: root/src/junit/runner/TestCollector.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/junit/runner/TestCollector.java')
-rw-r--r--src/junit/runner/TestCollector.java17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/junit/runner/TestCollector.java b/src/junit/runner/TestCollector.java
new file mode 100644
index 0000000..3ac9d9e
--- /dev/null
+++ b/src/junit/runner/TestCollector.java
@@ -0,0 +1,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();
+}