aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/org/junit/runner/manipulation/Alphanumeric.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/org/junit/runner/manipulation/Alphanumeric.java')
-rw-r--r--src/main/java/org/junit/runner/manipulation/Alphanumeric.java27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/main/java/org/junit/runner/manipulation/Alphanumeric.java b/src/main/java/org/junit/runner/manipulation/Alphanumeric.java
deleted file mode 100644
index 8388d21..0000000
--- a/src/main/java/org/junit/runner/manipulation/Alphanumeric.java
+++ /dev/null
@@ -1,27 +0,0 @@
-package org.junit.runner.manipulation;
-
-import java.util.Comparator;
-
-import org.junit.runner.Description;
-
-/**
- * A sorter that orders tests alphanumerically by test name.
- *
- * @since 4.13
- */
-public final class Alphanumeric extends Sorter implements Ordering.Factory {
-
- public Alphanumeric() {
- super(COMPARATOR);
- }
-
- public Ordering create(Context context) {
- return this;
- }
-
- private static final Comparator<Description> COMPARATOR = new Comparator<Description>() {
- public int compare(Description o1, Description o2) {
- return o1.getDisplayName().compareTo(o2.getDisplayName());
- }
- };
-}