aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/org/junit/runner/manipulation/Orderable.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/org/junit/runner/manipulation/Orderable.java')
-rw-r--r--src/main/java/org/junit/runner/manipulation/Orderable.java21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/main/java/org/junit/runner/manipulation/Orderable.java b/src/main/java/org/junit/runner/manipulation/Orderable.java
deleted file mode 100644
index 9a12a3b..0000000
--- a/src/main/java/org/junit/runner/manipulation/Orderable.java
+++ /dev/null
@@ -1,21 +0,0 @@
-package org.junit.runner.manipulation;
-
-/**
- * Interface for runners that allow ordering of tests.
- *
- * <p>Beware of using this interface to cope with order dependencies between tests.
- * Tests that are isolated from each other are less expensive to maintain and
- * can be run individually.
- *
- * @since 4.13
- */
-public interface Orderable extends Sortable {
-
- /**
- * Orders the tests using <code>orderer</code>
- *
- * @throws InvalidOrderingException if orderer does something invalid (like remove or add
- * children)
- */
- void order(Orderer orderer) throws InvalidOrderingException;
-}