-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Support RobotFramework xUnit files
Support for junit files that does not have tessuites element as root element. Example RobotFramework xunit files
- Loading branch information
Showing
3 changed files
with
92 additions
and
26 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<testsuite name="Test" tests="5" errors="0" failures="3" skipped="0" time="0.086"> | ||
<testcase classname="Test" name="Testi Allways Passed" time="0.001"> | ||
</testcase> | ||
<testcase classname="Test" name="test failing always" time="0.003"> | ||
<failure message="AssertionError" type="AssertionError"/> | ||
</testcase> | ||
<testcase classname="Test" name="test random 10percent fail" time="0.002"> | ||
<failure message="AssertionError" type="AssertionError"/> | ||
</testcase> | ||
<testcase classname="Test" name="test random 50percent fail" time="0.001"> | ||
<failure message="AssertionError" type="AssertionError"/> | ||
</testcase> | ||
<testcase classname="Test" name="test random 25percent fail" time="0.001"> | ||
</testcase> | ||
</testsuite> |
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