Modifier and Type | Field and Description |
---|---|
private java.util.Map<java.lang.Integer,RunListener> |
ForkClient.testSetReporters |
Modifier and Type | Method and Description |
---|---|
private RunListener |
ForkClient.getOrCreateReporter(int channelNumber) |
RunListener |
ForkClient.getReporter(int channelNumber)
Used when getting reporters on the plugin side of a fork.
|
Modifier and Type | Class and Description |
---|---|
class |
TestSetRunListener
Reports data for a single test set.
|
Modifier and Type | Method and Description |
---|---|
RunListener |
DefaultReporterFactory.createReporter() |
Modifier and Type | Class and Description |
---|---|
class |
ForkingRunListener
Encodes the full output of the test run to the stdout stream.
|
Modifier and Type | Method and Description |
---|---|
RunListener |
ForkingReporterFactory.createReporter() |
Modifier and Type | Field and Description |
---|---|
protected RunListener |
JUnit4RunListener.reporter |
Constructor and Description |
---|
JUnit4RunListener(RunListener reporter)
Constructor.
|
Modifier and Type | Field and Description |
---|---|
private RunListener |
TestListenerInvocationHandler.reporter |
Modifier and Type | Method and Description |
---|---|
void |
JUnitTestSet.execute(RunListener reporter,
java.lang.ClassLoader loader) |
void |
PojoTestSet.execute(RunListener reportManager,
java.lang.ClassLoader loader) |
void |
SurefireTestSet.execute(RunListener reportManager,
java.lang.ClassLoader loader) |
private boolean |
PojoTestSet.executeTestMethod(java.lang.reflect.Method method,
java.lang.Object[] args,
RunListener reportManager) |
private void |
PojoTestSet.executeTestMethods(RunListener reportManager) |
private void |
JUnit3Provider.executeTestSet(SurefireTestSet testSet,
RunListener reporter,
java.lang.ClassLoader classLoader) |
Constructor and Description |
---|
TestListenerInvocationHandler(RunListener reporter) |
Modifier and Type | Class and Description |
---|---|
class |
MockReporter
Internal tests use only.
|
Modifier and Type | Method and Description |
---|---|
private void |
JUnit4Provider.executeTestSet(java.lang.Class<?> clazz,
RunListener reporter,
Notifier notifier) |
Modifier and Type | Class and Description |
---|---|
class |
ClassesParallelRunListener |
class |
ConcurrentRunListener
Handles responses from concurrent junit
Stuff to remember about JUnit threading:
parallel=classes; beforeClass/afterClass, constructor and all tests method run on same thread
parallel=methods; beforeClass/afterClass run on main thread, constructor + each test method run on same thread
parallel=both; same as parallel=methods
|
class |
MethodsParallelRunListener |
Modifier and Type | Field and Description |
---|---|
private java.lang.ThreadLocal<RunListener> |
ConcurrentRunListener.reporterManagerThreadLocal |
Modifier and Type | Method and Description |
---|---|
(package private) RunListener |
ConcurrentRunListener.getRunListener() |
Modifier and Type | Method and Description |
---|---|
void |
TestSet.incrementFinishedTests(RunListener reporterManager,
boolean reportImmediately) |
void |
TestSet.replay(RunListener target) |
(package private) void |
TestMethod.replay(RunListener reporter) |
void |
TestSet.setAllScheduled(RunListener reporterManager) |
Constructor and Description |
---|
JUnitCoreRunListener(RunListener reporter,
java.util.Map<java.lang.String,TestSet> classMethodCounts) |
NonConcurrentRunListener(RunListener reporter) |
Modifier and Type | Method and Description |
---|---|
RunListener |
ReporterFactory.createReporter()
Creates a reporter.
|
Modifier and Type | Field and Description |
---|---|
private RunListener |
TestNGReporter.reporter |
Modifier and Type | Method and Description |
---|---|
private static Stoppable |
TestNGExecutor.createStoppable(RunListener reportManager,
int skipAfterFailureCount) |
private static TestNGReporter |
TestNGExecutor.createTestNGReporter(RunListener reportManager) |
(package private) void |
TestNGXmlTestSuite.execute(RunListener reporter) |
(package private) void |
TestNGDirectoryTestSuite.execute(TestsToRun testsToRun,
RunListener reporterManager) |
private void |
TestNGDirectoryTestSuite.executeLazy(TestsToRun testsToRun,
RunListener reporterManager) |
private void |
TestNGDirectoryTestSuite.executeMulti(TestsToRun testsToRun,
RunListener reporterManager) |
private void |
TestNGDirectoryTestSuite.executeSingleClass(RunListener reporter,
java.lang.Class<?> testClass) |
(package private) void |
TestSuite.finishTestSuite(RunListener reporterManager) |
private static void |
TestNGExecutor.postConfigure(org.testng.TestNG testNG,
java.lang.String sourcePath,
RunListener reportManager,
java.io.File reportsDirectory,
int skipAfterFailureCount,
int verboseLevel) |
(package private) static void |
TestNGExecutor.run(java.lang.Iterable<java.lang.Class<?>> testClasses,
java.lang.String testSourceDirectory,
java.util.Map<java.lang.String,java.lang.String> options,
RunListener reportManager,
java.io.File reportsDirectory,
TestListResolver methodFilter,
java.util.List<CommandLineOption> mainCliOptions,
int skipAfterFailureCount) |
(package private) static void |
TestNGExecutor.run(java.util.List<java.lang.String> suiteFiles,
java.lang.String testSourceDirectory,
java.util.Map<java.lang.String,java.lang.String> options,
RunListener reportManager,
java.io.File reportsDirectory,
int skipAfterFailureCount) |
(package private) void |
TestSuite.startTestSuite(RunListener reporterManager) |
Constructor and Description |
---|
ConfigurationAwareTestNGReporter(RunListener reportManager) |
TestNGReporter(RunListener reportManager)
Constructs a new instance that will listen to
test updates from a
TestNG class instance. |