Uses of Class
org.junit.runner.manipulation.Ordering
-
Packages that use Ordering Package Description org.junit.runner Provides classes used to describe, collect, run and analyze multiple tests.org.junit.runner.manipulation -
-
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.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.
-