Class TestSet
- java.lang.Object
-
- org.apache.maven.surefire.junitcore.TestSet
-
@Deprecated public class TestSet extends java.lang.ObjectDeprecated.* Represents the test-state of a testset that is run.
-
-
Field Summary
Fields Modifier and Type Field Description private booleanallScheduledDeprecated.private ClassMethodIndexerclassMethodIndexerDeprecated.private java.util.concurrent.atomic.AtomicIntegernumberOfCompletedChildrenDeprecated.private java.util.concurrent.atomic.AtomicIntegernumberOfTestsDeprecated.private java.util.concurrent.atomic.AtomicBooleanplayedDeprecated.private RunModerunModeDeprecated.private static java.lang.InheritableThreadLocal<TestSet>TEST_SETDeprecated.private java.lang.StringtestClassNameDeprecated.private java.util.Collection<TestMethod>testMethodsDeprecated.
-
Constructor Summary
Constructors Constructor Description TestSet(java.lang.String testClassName, RunMode runMode, ClassMethodIndexer classMethodIndexer)Deprecated.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description private voidaddTestMethod(TestMethod testMethod)Deprecated.voidattachToThread()Deprecated.private TestSetReportEntrycreateReportEntry(java.lang.Integer elapsed, java.util.Map<java.lang.String,java.lang.String> systemProps)Deprecated.private TestSetReportEntrycreateReportEntryCompleted(int elapsed)Deprecated.private TestSetReportEntrycreateReportEntryStarted()Deprecated.TestMethodcreateThreadAttachedTestMethod(ReportEntry description)Deprecated.(package private) ClassMethodIndexergetClassMethodIndexer()Deprecated.(package private) RunModegetRunMode()Deprecated.static TestSetgetThreadTestSet()Deprecated.voidincrementFinishedTests(TestReportListener reporterManager, boolean reportImmediately)Deprecated.voidincrementTestMethodCount()Deprecated.private booleanisAllTestsDone()Deprecated.voidreplay(TestReportListener<TestOutputReportEntry> target)Deprecated.voidsetAllScheduled(TestReportListener reporterManager)Deprecated.
-
-
-
Field Detail
-
TEST_SET
private static final java.lang.InheritableThreadLocal<TestSet> TEST_SET
Deprecated.
-
testClassName
private final java.lang.String testClassName
Deprecated.
-
testMethods
private final java.util.Collection<TestMethod> testMethods
Deprecated.
-
played
private final java.util.concurrent.atomic.AtomicBoolean played
Deprecated.
-
numberOfCompletedChildren
private final java.util.concurrent.atomic.AtomicInteger numberOfCompletedChildren
Deprecated.
-
numberOfTests
private final java.util.concurrent.atomic.AtomicInteger numberOfTests
Deprecated.
-
runMode
private final RunMode runMode
Deprecated.
-
classMethodIndexer
private final ClassMethodIndexer classMethodIndexer
Deprecated.
-
allScheduled
private volatile boolean allScheduled
Deprecated.
-
-
Constructor Detail
-
TestSet
public TestSet(java.lang.String testClassName, RunMode runMode, ClassMethodIndexer classMethodIndexer)Deprecated.
-
-
Method Detail
-
getRunMode
final RunMode getRunMode()
Deprecated.
-
getClassMethodIndexer
final ClassMethodIndexer getClassMethodIndexer()
Deprecated.
-
replay
public void replay(TestReportListener<TestOutputReportEntry> target)
Deprecated.
-
createThreadAttachedTestMethod
public TestMethod createThreadAttachedTestMethod(ReportEntry description)
Deprecated.
-
createReportEntryStarted
private TestSetReportEntry createReportEntryStarted()
Deprecated.
-
createReportEntryCompleted
private TestSetReportEntry createReportEntryCompleted(int elapsed)
Deprecated.
-
createReportEntry
private TestSetReportEntry createReportEntry(java.lang.Integer elapsed, java.util.Map<java.lang.String,java.lang.String> systemProps)
Deprecated.
-
incrementTestMethodCount
public void incrementTestMethodCount()
Deprecated.
-
addTestMethod
private void addTestMethod(TestMethod testMethod)
Deprecated.
-
incrementFinishedTests
public void incrementFinishedTests(TestReportListener reporterManager, boolean reportImmediately)
Deprecated.
-
setAllScheduled
public void setAllScheduled(TestReportListener reporterManager)
Deprecated.
-
isAllTestsDone
private boolean isAllTestsDone()
Deprecated.
-
attachToThread
public void attachToThread()
Deprecated.
-
getThreadTestSet
public static TestSet getThreadTestSet()
Deprecated.
-
-