Uses of Class
org.junit.runner.manipulation.Ordering
-
Packages that use Ordering Package Description org.junit.internal.requests Provides implementations ofRequest
.org.junit.runner Provides classes used to describe, collect, run and analyze multiple tests.org.junit.runner.manipulation -
-
Uses of Ordering in org.junit.internal.requests
Fields in org.junit.internal.requests declared as Ordering Modifier and Type Field Description private Ordering
OrderingRequest. ordering
Constructors in org.junit.internal.requests with parameters of type Ordering Constructor Description OrderingRequest(Request request, Ordering ordering)
-
Uses of Ordering in org.junit.runner
Methods in org.junit.runner with parameters of type Ordering Modifier and Type Method Description Request
Request. orderWith(Ordering ordering)
Returns a Request whose Tests can be run in a certain order, defined byordering
-
Uses of Ordering in org.junit.runner.manipulation
Subclasses of Ordering in org.junit.runner.manipulation Modifier and Type Class Description class
Alphanumeric
A sorter that orders tests alphanumerically by test name.class
Sorter
ASorter
orders tests.Fields in org.junit.runner.manipulation declared as Ordering Modifier and Type Field Description private Ordering
Orderer. ordering
Methods in org.junit.runner.manipulation that return Ordering Modifier and Type Method Description Ordering
Alphanumeric. create(Ordering.Context context)
Ordering
Ordering.Factory. create(Ordering.Context context)
Creates an Ordering instance using the given context.static Ordering
Ordering. definedBy(java.lang.Class<? extends Ordering.Factory> factoryClass, Description annotatedTestClass)
Creates anOrdering
from the given factory class.static Ordering
Ordering. definedBy(Ordering.Factory factory, Description annotatedTestClass)
Creates anOrdering
from the given factory.static Ordering
Ordering. shuffledBy(java.util.Random random)
Creates anOrdering
that shuffles the items using the givenRandom
instance.Constructors in org.junit.runner.manipulation with parameters of type Ordering Constructor Description Orderer(Ordering delegate)
-