Skip to content

Commit

Permalink
JENKINS-31553: Parse surefire-2.19.
Browse files Browse the repository at this point in the history
Add testcase with input data.
  • Loading branch information
mfriedenhagen committed Jan 8, 2016
1 parent 5f406d2 commit fe963f6
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
Expand Up @@ -26,4 +26,9 @@ public void testTestCase3() throws Exception {
public void testTestCase4() throws Exception {
convertAndValidate(JUnitInputMetric.class, "junit/testcase4/input.xml", "junit/testcase4/input.xml");
}

@Test
public void testTestCase5() throws Exception {
convertAndValidate(JUnitInputMetric.class, "junit/testcase5/input.xml", "junit/testcase5/input.xml");
}
}
@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuite xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="https://maven.apache.org/surefire/maven-surefire-plugin/xsd/surefire-test-report.xsd" errors="0" failures="0" name="User sessions"
tests="12"
time="66.864949">
<testcase classname="User sessions" name="Login" time="40.857683">
</testcase>
<testcase classname="User sessions" name="Logout"
time="25.896327">
</testcase>
</testsuite>

0 comments on commit fe963f6

Please sign in to comment.