-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsample.junit
More file actions
15 lines (15 loc) · 781 Bytes
/
sample.junit
File metadata and controls
15 lines (15 loc) · 781 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?xml version="1.0" encoding="UTF-8"?>
<testsuites>
<testsuite tests="3" failures="1" disabled="0" errors="0" time="0.006" name="SwiftTests">
<testcase classname="Tests.SwiftTests" name="testShouldPass" time="0.001"></testcase>
<testcase classname="Tests.SwiftTests" name="testShouldPassAgain" time="0.004"></testcase>
<testcase classname="Tests.SwiftTests" name="testFail" time="0.001">
<failure message="Assertion failed"></failure>
</testcase>
</testsuite>
<testsuite tests="1" failures="1" disabled="0" errors="0" time="0.001" name="AnotherTests">
<testcase classname="Tests.AnotherTests" name="testShouldFail" time="0.001">
<failure message="Oops, something went wrong!"></failure>
</testcase>
</testsuite>
</testsuites>