aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/org/junit/runner/OrderWith.java
diff options
context:
space:
mode:
authorPete Bentley <prb@google.com>2021-02-24 08:57:22 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2021-02-24 08:57:22 +0000
commitd1359663578e2a49e74ed74eb10d4b663d58cf3f (patch)
tree1331fa1b743d5d0a341f82ff555ce4c602f40ab9 /src/main/java/org/junit/runner/OrderWith.java
parente938015d2d5a2157ed20eb622fcd9750a12bb4af (diff)
parent7db56fab8af99e12a7644349d14109235ec584b9 (diff)
downloadjunit-d1359663578e2a49e74ed74eb10d4b663d58cf3f.tar.gz
Merge changes I8f5cd126,Ifdb59336,I6abae5ae,I5ec909df
* changes: Remove support for stuck threads Remove DisableOnDebug (new in 4.12) as it is not supported on Android Extra generic type information to aid certain javacs. Upgrade external/junit to 4.13.2
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, 28 insertions, 0 deletions
diff --git a/src/main/java/org/junit/runner/OrderWith.java b/src/main/java/org/junit/runner/OrderWith.java
new file mode 100644
index 0000000..e8470c9
--- /dev/null
+++ b/src/main/java/org/junit/runner/OrderWith.java
@@ -0,0 +1,28 @@
+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();
+}