aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/junit/framework/Test.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/junit/framework/Test.java')
-rw-r--r--src/main/java/junit/framework/Test.java17
1 files changed, 9 insertions, 8 deletions
diff --git a/src/main/java/junit/framework/Test.java b/src/main/java/junit/framework/Test.java
index a016ee8..db95c6c 100644
--- a/src/main/java/junit/framework/Test.java
+++ b/src/main/java/junit/framework/Test.java
@@ -6,12 +6,13 @@ package junit.framework;
* @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);
+ /**
+ * 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);
} \ No newline at end of file