summaryrefslogtreecommitdiffstats
path: root/dx/src/junit/framework/Test.java
diff options
context:
space:
mode:
Diffstat (limited to 'dx/src/junit/framework/Test.java')
-rw-r--r--dx/src/junit/framework/Test.java17
1 files changed, 0 insertions, 17 deletions
diff --git a/dx/src/junit/framework/Test.java b/dx/src/junit/framework/Test.java
deleted file mode 100644
index 1c6d57b36..000000000
--- a/dx/src/junit/framework/Test.java
+++ /dev/null
@@ -1,17 +0,0 @@
-package junit.framework;
-
-/**
- * A <em>Test</em> can be run and collect its results.
- *
- * @see TestResult
- */
-public interface Test {
- /**
- * Counts the number of test cases that will be run by this test.
- */
- public abstract int countTestCases();
- /**
- * Runs a test and collects its result in a TestResult instance.
- */
- public abstract void run(TestResult result);
-}