public class StatelessXmlReporter extends Object
TEST-reportName[-suffix].xml
file like written and read
by Ant's <junit>
and
<junitreport>
tasks,
then supported by many tools like CI servers.
<?xml version="1.0" encoding="UTF-8"?> <testsuite name="suite name" [group="group"] tests="0" failures="0" errors="0" skipped="0" time="0,###.###"> <properties> <property name="name" value="value"/> [...] </properties> <testcase time="0,###.###" name="test name [classname="class name"] [group="group"]"/> <testcase time="0,###.###" name="test name [classname="class name"] [group="group"]"> <error message="message" type="exception class name">stacktrace</error> <system-out>system out content (present only if not empty)</system-out> <system-err>system err content (present only if not empty)</system-err> </testcase> <testcase time="0,###.###" name="test name [classname="class name"] [group="group"]"> <failure message="message" type="exception class name">stacktrace</failure> <system-out>system out content (present only if not empty)</system-out> <system-err>system err content (present only if not empty)</system-err> </testcase> <testcase time="0,###.###" name="test name [classname="class name"] [group="group"]"> <skipped/> </testcase> [...]
Constructor and Description |
---|
StatelessXmlReporter(File reportsDirectory,
String reportNameSuffix,
boolean trimStackTrace,
int rerunFailingTestsCount,
Map<String,Map<String,List<WrappedReportEntry>>> testClassMethodRunHistoryMap) |
Modifier and Type | Method and Description |
---|---|
void |
cleanTestHistoryMap()
Clean testClassMethodRunHistoryMap
|
void |
testSetCompleted(WrappedReportEntry testSetReportEntry,
TestSetStats testSetStats) |
public void testSetCompleted(WrappedReportEntry testSetReportEntry, TestSetStats testSetStats)
public void cleanTestHistoryMap()
Copyright © 2004–2014 The Apache Software Foundation. All rights reserved.