aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/org/junit/runner/OrderWith.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/org/junit/runner/OrderWith.java')
-rw-r--r--src/main/java/org/junit/runner/OrderWith.java28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/main/java/org/junit/runner/OrderWith.java b/src/main/java/org/junit/runner/OrderWith.java
deleted file mode 100644
index e8470c9..0000000
--- a/src/main/java/org/junit/runner/OrderWith.java
+++ /dev/null
@@ -1,28 +0,0 @@
-package org.junit.runner;
-
-import java.lang.annotation.ElementType;
-import java.lang.annotation.Inherited;
-import java.lang.annotation.Retention;
-import java.lang.annotation.RetentionPolicy;
-import java.lang.annotation.Target;
-
-import org.junit.runner.manipulation.Ordering;
-import org.junit.validator.ValidateWith;
-
-/**
- * When a test class is annotated with <code>&#064;OrderWith</code> or extends a class annotated
- * with <code>&#064;OrderWith</code>, JUnit will order the tests in the test class (and child
- * test classes, if any) using the ordering defined by the {@link Ordering} class.
- *
- * @since 4.13
- */
-@Retention(RetentionPolicy.RUNTIME)
-@Target(ElementType.TYPE)
-@Inherited
-@ValidateWith(OrderWithValidator.class)
-public @interface OrderWith {
- /**
- * Gets a class that extends {@link Ordering}. The class must have a public no-arg constructor.
- */
- Class<? extends Ordering.Factory> value();
-}