Uses of Class
com.carrotsearch.randomizedtesting.RandomizedRunner.TestCandidate
-
Packages that use RandomizedRunner.TestCandidate Package Description com.carrotsearch.randomizedtesting -
-
Uses of RandomizedRunner.TestCandidate in com.carrotsearch.randomizedtesting
Fields in com.carrotsearch.randomizedtesting with type parameters of type RandomizedRunner.TestCandidate Modifier and Type Field Description private java.util.List<RandomizedRunner.TestCandidate>
RandomizedRunner. testCandidates
All test candidates, processed (seeds assigned) and flattened.Methods in com.carrotsearch.randomizedtesting that return types with arguments of type RandomizedRunner.TestCandidate Modifier and Type Method Description private static java.util.List<RandomizedRunner.TestCandidate>
RandomizedRunner. applyFilters(java.lang.Class<?> suiteClass, java.util.List<RandomizedRunner.TestCandidate> testCandidates, java.util.Collection<org.junit.runner.manipulation.Filter> testFilters)
private java.util.List<RandomizedRunner.TestCandidate>
RandomizedRunner. collectCandidatesForMethod(java.util.Map<java.lang.String,java.lang.Integer> descriptionRepetitions, java.lang.reflect.Constructor<?> constructor, RandomizedRunner.TestMethodExecution testCase)
Collect test candidates for a single method and the given seed.private java.util.List<RandomizedRunner.TestCandidate>
RandomizedRunner. collectTestCandidates(org.junit.runner.Description classDescription)
Collect all test candidates, regardless if they will be executed or not.private java.util.Map<RandomizedRunner.TestCandidate,java.lang.Boolean>
RandomizedRunner. determineIgnoredTests(java.util.List<RandomizedRunner.TestCandidate> tests)
Determine the set of ignored tests.Methods in com.carrotsearch.randomizedtesting with parameters of type RandomizedRunner.TestCandidate Modifier and Type Method Description private int
ThreadLeakControl. determineTimeout(RandomizedRunner.TestCandidate c)
Determine timeout for a single test method (candidate).(package private) org.junit.runners.model.Statement
ThreadLeakControl. forTest(org.junit.runners.model.Statement s, RandomizedRunner.TestCandidate c)
AStatement
for wrapping test-level execution.private boolean
RandomizedRunner. hasIgnoreAnnotation(RandomizedRunner.TestCandidate c)
Returns true if we should ignore this test candidate.private boolean
RandomizedRunner. isTestFiltered(GroupEvaluator ev, RandomizedRunner.TestCandidate c)
(package private) void
RandomizedRunner. reportAsIgnored(org.junit.runner.notification.RunNotifier notifier, GroupEvaluator ge, RandomizedRunner.TestCandidate c)
(package private) void
RandomizedRunner. runSingleTest(org.junit.runner.notification.RunNotifier notifier, RandomizedRunner.TestCandidate c, ThreadLeakControl threadLeakControl)
Runs a single test in the "master" test thread.private org.junit.runners.model.Statement
RandomizedRunner. wrapBeforeAndAfters(org.junit.runners.model.Statement s, RandomizedRunner.TestCandidate c, java.lang.Object instance)
Wrap before and after hooks.private org.junit.runners.model.Statement
RandomizedRunner. wrapExpectedExceptions(org.junit.runners.model.Statement s, RandomizedRunner.TestCandidate c)
Wrap the given statement into another catching the expected exception, if declared.private org.junit.runners.model.Statement
RandomizedRunner. wrapMethodRules(org.junit.runners.model.Statement s, RandomizedRunner.TestCandidate c, java.lang.Object instance)
Wrap the given statement in any declared MethodRules (old style rules).Method parameters in com.carrotsearch.randomizedtesting with type arguments of type RandomizedRunner.TestCandidate Modifier and Type Method Description private static java.util.List<RandomizedRunner.TestCandidate>
RandomizedRunner. applyFilters(java.lang.Class<?> suiteClass, java.util.List<RandomizedRunner.TestCandidate> testCandidates, java.util.Collection<org.junit.runner.manipulation.Filter> testFilters)
private java.util.HashMap<java.lang.Class<? extends java.lang.annotation.Annotation>,GroupEvaluator.TestGroupInfo>
GroupEvaluator. collectGroups(java.util.List<RandomizedRunner.TestCandidate> testCandidates)
private java.util.Map<RandomizedRunner.TestCandidate,java.lang.Boolean>
RandomizedRunner. determineIgnoredTests(java.util.List<RandomizedRunner.TestCandidate> tests)
Determine the set of ignored tests.private org.junit.runners.model.Statement
RandomizedRunner. runTestsStatement(org.junit.runner.notification.RunNotifier notifier, java.util.List<RandomizedRunner.TestCandidate> tests, java.util.Map<RandomizedRunner.TestCandidate,java.lang.Boolean> ignored, ThreadLeakControl threadLeakControl)
private org.junit.runners.model.Statement
RandomizedRunner. runTestsStatement(org.junit.runner.notification.RunNotifier notifier, java.util.List<RandomizedRunner.TestCandidate> tests, java.util.Map<RandomizedRunner.TestCandidate,java.lang.Boolean> ignored, ThreadLeakControl threadLeakControl)
Constructor parameters in com.carrotsearch.randomizedtesting with type arguments of type RandomizedRunner.TestCandidate Constructor Description GroupEvaluator(java.util.List<RandomizedRunner.TestCandidate> testCandidates)
-