Class TestSet
- java.lang.Object
-
- org.apache.maven.surefire.junitcore.TestSet
-
@Deprecated public class TestSet extends java.lang.Object
Deprecated.* Represents the test-state of a testset that is run.
-
-
Field Summary
Fields Modifier and Type Field Description private boolean
allScheduled
Deprecated.private ClassMethodIndexer
classMethodIndexer
Deprecated.private java.util.concurrent.atomic.AtomicInteger
numberOfCompletedChildren
Deprecated.private java.util.concurrent.atomic.AtomicInteger
numberOfTests
Deprecated.private java.util.concurrent.atomic.AtomicBoolean
played
Deprecated.private RunMode
runMode
Deprecated.private static java.lang.InheritableThreadLocal<TestSet>
TEST_SET
Deprecated.private java.lang.String
testClassName
Deprecated.private java.util.Collection<TestMethod>
testMethods
Deprecated.
-
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 void
addTestMethod(TestMethod testMethod)
Deprecated.void
attachToThread()
Deprecated.private TestSetReportEntry
createReportEntry(java.lang.Integer elapsed, java.util.Map<java.lang.String,java.lang.String> systemProps)
Deprecated.private TestSetReportEntry
createReportEntryCompleted(int elapsed)
Deprecated.private TestSetReportEntry
createReportEntryStarted()
Deprecated.TestMethod
createThreadAttachedTestMethod(ReportEntry description)
Deprecated.(package private) ClassMethodIndexer
getClassMethodIndexer()
Deprecated.(package private) RunMode
getRunMode()
Deprecated.static TestSet
getThreadTestSet()
Deprecated.void
incrementFinishedTests(TestReportListener reporterManager, boolean reportImmediately)
Deprecated.void
incrementTestMethodCount()
Deprecated.private boolean
isAllTestsDone()
Deprecated.void
replay(TestReportListener<TestOutputReportEntry> target)
Deprecated.void
setAllScheduled(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.
-
-