aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/junit/framework/JUnit4TestAdapter.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/junit/framework/JUnit4TestAdapter.java')
-rw-r--r--src/main/java/junit/framework/JUnit4TestAdapter.java25
1 files changed, 2 insertions, 23 deletions
diff --git a/src/main/java/junit/framework/JUnit4TestAdapter.java b/src/main/java/junit/framework/JUnit4TestAdapter.java
index 9d32031..cbb66db 100644
--- a/src/main/java/junit/framework/JUnit4TestAdapter.java
+++ b/src/main/java/junit/framework/JUnit4TestAdapter.java
@@ -9,23 +9,11 @@ import org.junit.runner.Request;
import org.junit.runner.Runner;
import org.junit.runner.manipulation.Filter;
import org.junit.runner.manipulation.Filterable;
-import org.junit.runner.manipulation.Orderer;
-import org.junit.runner.manipulation.InvalidOrderingException;
import org.junit.runner.manipulation.NoTestsRemainException;
-import org.junit.runner.manipulation.Orderable;
+import org.junit.runner.manipulation.Sortable;
import org.junit.runner.manipulation.Sorter;
-/**
- * The JUnit4TestAdapter enables running JUnit-4-style tests using a JUnit-3-style test runner.
- *
- * <p> To use it, add the following to a test class:
- * <pre>
- public static Test suite() {
- return new JUnit4TestAdapter(<em>YourJUnit4TestClass</em>.class);
- }
-</pre>
- */
-public class JUnit4TestAdapter implements Test, Filterable, Orderable, Describable {
+public class JUnit4TestAdapter implements Test, Filterable, Sortable, Describable {
private final Class<?> fNewTestClass;
private final Runner fRunner;
@@ -95,13 +83,4 @@ public class JUnit4TestAdapter implements Test, Filterable, Orderable, Describab
public void sort(Sorter sorter) {
sorter.apply(fRunner);
}
-
- /**
- * {@inheritDoc}
- *
- * @since 4.13
- */
- public void order(Orderer orderer) throws InvalidOrderingException {
- orderer.apply(fRunner);
- }
} \ No newline at end of file