-
-
Notifications
You must be signed in to change notification settings - Fork 723
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adds JUnit's system-out to report (via #990)
- Loading branch information
Showing
3 changed files
with
51 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 9 additions & 4 deletions
13
plugins/junit-xml-plugin/src/test/resources/junitdata/TEST-test.CdataMessage.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,11 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<testsuite tests="1" failures="0" name="test.SampleTest" time="1.051" errors="0" skipped="0"> | ||
<testcase classname="test.SampleTest" name="shouldGenerate" time="1.051"> | ||
<failure message="some-message"><![CDATA[some-trace]]></failure> | ||
</testcase> | ||
<testsuite tests="2" failures="0" name="test.SampleTest" time="2.055" errors="0" skipped="0"> | ||
<testcase classname="test.SampleTest" name="shouldGenerateSystemOutOnError" time="1.051"> | ||
<system-out><![CDATA[output | ||
more output]]></system-out> | ||
<failure message="some-message"><![CDATA[some-trace]]></failure> | ||
</testcase> | ||
<testcase classname="test.SampleTest" name="shouldGenerateSystemOut" time="1.004"> | ||
<system-out><![CDATA[test output]]></system-out> | ||
</testcase> | ||
</testsuite> |