2011-04-27 10:05:43 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8" ?>
|
2021-07-29 14:48:00 +00:00
|
|
|
<testsuite name="tst_Subtest" timestamp="@TEST_START_TIME@" hostname="@HOSTNAME@" tests="9" failures="2" errors="0" time="@TEST_DURATION@">
|
2011-04-27 10:05:43 +00:00
|
|
|
<properties>
|
2020-07-21 23:38:42 +00:00
|
|
|
<property name="QTestVersion" value="@INSERT_QT_VERSION_HERE@"/>
|
|
|
|
<property name="QtVersion" value="@INSERT_QT_VERSION_HERE@"/>
|
|
|
|
<property name="QtBuild" value=""/>
|
2011-04-27 10:05:43 +00:00
|
|
|
</properties>
|
testlib: Improve JUnit XML conformance
The JUnit test framework did not initially have any XML reporting
facilities built in. Instead, the XML report was generated by the
Apache Ant JUnit task:
https://github.com/apache/ant/search?q=filename%3AXMLJUnitResultFormatter.java
Many users interacted with these reports via the Jenkins JUnit plugin,
which provided graphical visualization of the test results:
https://plugins.jenkins.io/junit/
Due to the lack of an official XML schema for the Apache Ant JUnit
report there was some confusion about what the actual format was.
People started documenting the de-facto format, both as produced
by Ant, and as consumed by Jenkins:
https://github.com/windyroad/JUnit-Schema/blob/master/JUnit.xsd
https://github.com/junit-team/junit5/search?q=filename%3Ajenkins-junit.xsd
The XML produced by the Qt Test JUnit reporter was far from these
schemas, causing issues when importing results into tools such
as Jenkins, Allure2, or Test Center.
The following changes have been made to improve conformance:
- The 'timestamp' attribute on <testsuite> is is now in ISO
8601 local time, without any time zone specified
- The 'hostname' attribute on <testsuite> is now included
- The 'classname' attribute on <testcase> is now included
- The non-standard 'result' attribute on <testcase> has
been removed
- The non-standard 'result' attribute on <failure> has
been renamed to 'type'
- The <system-out> element on <testsuite> is always included,
even when empty
- The non-standard 'tag' attribute on <failure> has been
removed. Data-driven tests are now represented as individual
<testcase> elements, e.g.:
<testcase name="someTest(someData X)" ...>
<testcase name="someTest(someData Y)" ...>
<testcase name="someTest(someData Z)" ...>
The resulting XML validates against both the de-facto Apache Ant
'JUnit 4' schema and the Jenkins JUnit plugin schema.
Task-number: QTBUG-95424
Change-Id: I6fc9abedbfb319f2545b99b37d059b18c16776ff
Reviewed-by: Mårten Nordheim <marten.nordheim@qt.io>
2021-07-29 07:59:59 +00:00
|
|
|
<testcase name="initTestCase" classname="tst_Subtest" time="@TEST_DURATION@">
|
2020-07-21 23:38:42 +00:00
|
|
|
<!-- type="qdebug" message="initTestCase initTestCase (null)" -->
|
2011-09-20 01:56:31 +00:00
|
|
|
</testcase>
|
testlib: Improve JUnit XML conformance
The JUnit test framework did not initially have any XML reporting
facilities built in. Instead, the XML report was generated by the
Apache Ant JUnit task:
https://github.com/apache/ant/search?q=filename%3AXMLJUnitResultFormatter.java
Many users interacted with these reports via the Jenkins JUnit plugin,
which provided graphical visualization of the test results:
https://plugins.jenkins.io/junit/
Due to the lack of an official XML schema for the Apache Ant JUnit
report there was some confusion about what the actual format was.
People started documenting the de-facto format, both as produced
by Ant, and as consumed by Jenkins:
https://github.com/windyroad/JUnit-Schema/blob/master/JUnit.xsd
https://github.com/junit-team/junit5/search?q=filename%3Ajenkins-junit.xsd
The XML produced by the Qt Test JUnit reporter was far from these
schemas, causing issues when importing results into tools such
as Jenkins, Allure2, or Test Center.
The following changes have been made to improve conformance:
- The 'timestamp' attribute on <testsuite> is is now in ISO
8601 local time, without any time zone specified
- The 'hostname' attribute on <testsuite> is now included
- The 'classname' attribute on <testcase> is now included
- The non-standard 'result' attribute on <testcase> has
been removed
- The non-standard 'result' attribute on <failure> has
been renamed to 'type'
- The <system-out> element on <testsuite> is always included,
even when empty
- The non-standard 'tag' attribute on <failure> has been
removed. Data-driven tests are now represented as individual
<testcase> elements, e.g.:
<testcase name="someTest(someData X)" ...>
<testcase name="someTest(someData Y)" ...>
<testcase name="someTest(someData Z)" ...>
The resulting XML validates against both the de-facto Apache Ant
'JUnit 4' schema and the Jenkins JUnit plugin schema.
Task-number: QTBUG-95424
Change-Id: I6fc9abedbfb319f2545b99b37d059b18c16776ff
Reviewed-by: Mårten Nordheim <marten.nordheim@qt.io>
2021-07-29 07:59:59 +00:00
|
|
|
<testcase name="test1" classname="tst_Subtest" time="@TEST_DURATION@">
|
2020-07-21 23:38:42 +00:00
|
|
|
<!-- type="qdebug" message="init test1 (null)" -->
|
|
|
|
<!-- type="qdebug" message="test1 test1 (null)" -->
|
|
|
|
<!-- type="qdebug" message="cleanup test1 (null)" -->
|
2011-09-20 01:56:31 +00:00
|
|
|
</testcase>
|
testlib: Improve JUnit XML conformance
The JUnit test framework did not initially have any XML reporting
facilities built in. Instead, the XML report was generated by the
Apache Ant JUnit task:
https://github.com/apache/ant/search?q=filename%3AXMLJUnitResultFormatter.java
Many users interacted with these reports via the Jenkins JUnit plugin,
which provided graphical visualization of the test results:
https://plugins.jenkins.io/junit/
Due to the lack of an official XML schema for the Apache Ant JUnit
report there was some confusion about what the actual format was.
People started documenting the de-facto format, both as produced
by Ant, and as consumed by Jenkins:
https://github.com/windyroad/JUnit-Schema/blob/master/JUnit.xsd
https://github.com/junit-team/junit5/search?q=filename%3Ajenkins-junit.xsd
The XML produced by the Qt Test JUnit reporter was far from these
schemas, causing issues when importing results into tools such
as Jenkins, Allure2, or Test Center.
The following changes have been made to improve conformance:
- The 'timestamp' attribute on <testsuite> is is now in ISO
8601 local time, without any time zone specified
- The 'hostname' attribute on <testsuite> is now included
- The 'classname' attribute on <testcase> is now included
- The non-standard 'result' attribute on <testcase> has
been removed
- The non-standard 'result' attribute on <failure> has
been renamed to 'type'
- The <system-out> element on <testsuite> is always included,
even when empty
- The non-standard 'tag' attribute on <failure> has been
removed. Data-driven tests are now represented as individual
<testcase> elements, e.g.:
<testcase name="someTest(someData X)" ...>
<testcase name="someTest(someData Y)" ...>
<testcase name="someTest(someData Z)" ...>
The resulting XML validates against both the de-facto Apache Ant
'JUnit 4' schema and the Jenkins JUnit plugin schema.
Task-number: QTBUG-95424
Change-Id: I6fc9abedbfb319f2545b99b37d059b18c16776ff
Reviewed-by: Mårten Nordheim <marten.nordheim@qt.io>
2021-07-29 07:59:59 +00:00
|
|
|
<testcase name="test2(data0)" classname="tst_Subtest" time="@TEST_DURATION@">
|
2020-07-21 23:38:42 +00:00
|
|
|
<!-- type="qdebug" message="test2_data test2 (null)" -->
|
|
|
|
<!-- type="qdebug" message="test2_data end" -->
|
testlib: Improve JUnit XML conformance
The JUnit test framework did not initially have any XML reporting
facilities built in. Instead, the XML report was generated by the
Apache Ant JUnit task:
https://github.com/apache/ant/search?q=filename%3AXMLJUnitResultFormatter.java
Many users interacted with these reports via the Jenkins JUnit plugin,
which provided graphical visualization of the test results:
https://plugins.jenkins.io/junit/
Due to the lack of an official XML schema for the Apache Ant JUnit
report there was some confusion about what the actual format was.
People started documenting the de-facto format, both as produced
by Ant, and as consumed by Jenkins:
https://github.com/windyroad/JUnit-Schema/blob/master/JUnit.xsd
https://github.com/junit-team/junit5/search?q=filename%3Ajenkins-junit.xsd
The XML produced by the Qt Test JUnit reporter was far from these
schemas, causing issues when importing results into tools such
as Jenkins, Allure2, or Test Center.
The following changes have been made to improve conformance:
- The 'timestamp' attribute on <testsuite> is is now in ISO
8601 local time, without any time zone specified
- The 'hostname' attribute on <testsuite> is now included
- The 'classname' attribute on <testcase> is now included
- The non-standard 'result' attribute on <testcase> has
been removed
- The non-standard 'result' attribute on <failure> has
been renamed to 'type'
- The <system-out> element on <testsuite> is always included,
even when empty
- The non-standard 'tag' attribute on <failure> has been
removed. Data-driven tests are now represented as individual
<testcase> elements, e.g.:
<testcase name="someTest(someData X)" ...>
<testcase name="someTest(someData Y)" ...>
<testcase name="someTest(someData Z)" ...>
The resulting XML validates against both the de-facto Apache Ant
'JUnit 4' schema and the Jenkins JUnit plugin schema.
Task-number: QTBUG-95424
Change-Id: I6fc9abedbfb319f2545b99b37d059b18c16776ff
Reviewed-by: Mårten Nordheim <marten.nordheim@qt.io>
2021-07-29 07:59:59 +00:00
|
|
|
<!-- type="qdebug" message="init test2 data0" -->
|
|
|
|
<!-- type="qdebug" message="test2 test2 data0" -->
|
|
|
|
<!-- type="qdebug" message="test2 end" -->
|
|
|
|
<!-- type="qdebug" message="cleanup test2 data0" -->
|
|
|
|
</testcase>
|
|
|
|
<testcase name="test2(data1)" classname="tst_Subtest" time="@TEST_DURATION@">
|
|
|
|
<!-- type="qdebug" message="init test2 data1" -->
|
|
|
|
<!-- type="qdebug" message="test2 test2 data1" -->
|
|
|
|
<!-- type="qdebug" message="test2 end" -->
|
|
|
|
<!-- type="qdebug" message="cleanup test2 data1" -->
|
|
|
|
</testcase>
|
|
|
|
<testcase name="test2(data2)" classname="tst_Subtest" time="@TEST_DURATION@">
|
|
|
|
<!-- type="qdebug" message="init test2 data2" -->
|
|
|
|
<!-- type="qdebug" message="test2 test2 data2" -->
|
|
|
|
<!-- type="qdebug" message="test2 end" -->
|
|
|
|
<!-- type="qdebug" message="cleanup test2 data2" -->
|
|
|
|
</testcase>
|
|
|
|
<testcase name="test3(data0)" classname="tst_Subtest" time="@TEST_DURATION@">
|
2020-07-21 23:38:42 +00:00
|
|
|
<!-- type="qdebug" message="test3_data test3 (null)" -->
|
|
|
|
<!-- type="qdebug" message="test3_data end" -->
|
testlib: Improve JUnit XML conformance
The JUnit test framework did not initially have any XML reporting
facilities built in. Instead, the XML report was generated by the
Apache Ant JUnit task:
https://github.com/apache/ant/search?q=filename%3AXMLJUnitResultFormatter.java
Many users interacted with these reports via the Jenkins JUnit plugin,
which provided graphical visualization of the test results:
https://plugins.jenkins.io/junit/
Due to the lack of an official XML schema for the Apache Ant JUnit
report there was some confusion about what the actual format was.
People started documenting the de-facto format, both as produced
by Ant, and as consumed by Jenkins:
https://github.com/windyroad/JUnit-Schema/blob/master/JUnit.xsd
https://github.com/junit-team/junit5/search?q=filename%3Ajenkins-junit.xsd
The XML produced by the Qt Test JUnit reporter was far from these
schemas, causing issues when importing results into tools such
as Jenkins, Allure2, or Test Center.
The following changes have been made to improve conformance:
- The 'timestamp' attribute on <testsuite> is is now in ISO
8601 local time, without any time zone specified
- The 'hostname' attribute on <testsuite> is now included
- The 'classname' attribute on <testcase> is now included
- The non-standard 'result' attribute on <testcase> has
been removed
- The non-standard 'result' attribute on <failure> has
been renamed to 'type'
- The <system-out> element on <testsuite> is always included,
even when empty
- The non-standard 'tag' attribute on <failure> has been
removed. Data-driven tests are now represented as individual
<testcase> elements, e.g.:
<testcase name="someTest(someData X)" ...>
<testcase name="someTest(someData Y)" ...>
<testcase name="someTest(someData Z)" ...>
The resulting XML validates against both the de-facto Apache Ant
'JUnit 4' schema and the Jenkins JUnit plugin schema.
Task-number: QTBUG-95424
Change-Id: I6fc9abedbfb319f2545b99b37d059b18c16776ff
Reviewed-by: Mårten Nordheim <marten.nordheim@qt.io>
2021-07-29 07:59:59 +00:00
|
|
|
<!-- type="qdebug" message="init test3 data0" -->
|
|
|
|
<!-- type="qdebug" message="test2 test3 data0" -->
|
|
|
|
<!-- type="qdebug" message="test2 end" -->
|
|
|
|
<!-- type="qdebug" message="cleanup test3 data0" -->
|
|
|
|
</testcase>
|
|
|
|
<testcase name="test3(data1)" classname="tst_Subtest" time="@TEST_DURATION@">
|
|
|
|
<!-- type="qdebug" message="init test3 data1" -->
|
|
|
|
<!-- type="qdebug" message="test2 test3 data1" -->
|
|
|
|
<failure type="fail" message="Compared values are not the same
|
2014-01-21 00:03:30 +00:00
|
|
|
Actual (str) : "hello1"
|
testlib: Improve JUnit XML conformance
The JUnit test framework did not initially have any XML reporting
facilities built in. Instead, the XML report was generated by the
Apache Ant JUnit task:
https://github.com/apache/ant/search?q=filename%3AXMLJUnitResultFormatter.java
Many users interacted with these reports via the Jenkins JUnit plugin,
which provided graphical visualization of the test results:
https://plugins.jenkins.io/junit/
Due to the lack of an official XML schema for the Apache Ant JUnit
report there was some confusion about what the actual format was.
People started documenting the de-facto format, both as produced
by Ant, and as consumed by Jenkins:
https://github.com/windyroad/JUnit-Schema/blob/master/JUnit.xsd
https://github.com/junit-team/junit5/search?q=filename%3Ajenkins-junit.xsd
The XML produced by the Qt Test JUnit reporter was far from these
schemas, causing issues when importing results into tools such
as Jenkins, Allure2, or Test Center.
The following changes have been made to improve conformance:
- The 'timestamp' attribute on <testsuite> is is now in ISO
8601 local time, without any time zone specified
- The 'hostname' attribute on <testsuite> is now included
- The 'classname' attribute on <testcase> is now included
- The non-standard 'result' attribute on <testcase> has
been removed
- The non-standard 'result' attribute on <failure> has
been renamed to 'type'
- The <system-out> element on <testsuite> is always included,
even when empty
- The non-standard 'tag' attribute on <failure> has been
removed. Data-driven tests are now represented as individual
<testcase> elements, e.g.:
<testcase name="someTest(someData X)" ...>
<testcase name="someTest(someData Y)" ...>
<testcase name="someTest(someData Z)" ...>
The resulting XML validates against both the de-facto Apache Ant
'JUnit 4' schema and the Jenkins JUnit plugin schema.
Task-number: QTBUG-95424
Change-Id: I6fc9abedbfb319f2545b99b37d059b18c16776ff
Reviewed-by: Mårten Nordheim <marten.nordheim@qt.io>
2021-07-29 07:59:59 +00:00
|
|
|
Expected (QString("hello0")): "hello0""/>
|
|
|
|
<!-- type="qdebug" message="cleanup test3 data1" -->
|
|
|
|
</testcase>
|
|
|
|
<testcase name="test3(data2)" classname="tst_Subtest" time="@TEST_DURATION@">
|
|
|
|
<!-- type="qdebug" message="init test3 data2" -->
|
|
|
|
<!-- type="qdebug" message="test2 test3 data2" -->
|
|
|
|
<failure type="fail" message="Compared values are not the same
|
2014-01-21 00:03:30 +00:00
|
|
|
Actual (str) : "hello2"
|
testlib: Improve JUnit XML conformance
The JUnit test framework did not initially have any XML reporting
facilities built in. Instead, the XML report was generated by the
Apache Ant JUnit task:
https://github.com/apache/ant/search?q=filename%3AXMLJUnitResultFormatter.java
Many users interacted with these reports via the Jenkins JUnit plugin,
which provided graphical visualization of the test results:
https://plugins.jenkins.io/junit/
Due to the lack of an official XML schema for the Apache Ant JUnit
report there was some confusion about what the actual format was.
People started documenting the de-facto format, both as produced
by Ant, and as consumed by Jenkins:
https://github.com/windyroad/JUnit-Schema/blob/master/JUnit.xsd
https://github.com/junit-team/junit5/search?q=filename%3Ajenkins-junit.xsd
The XML produced by the Qt Test JUnit reporter was far from these
schemas, causing issues when importing results into tools such
as Jenkins, Allure2, or Test Center.
The following changes have been made to improve conformance:
- The 'timestamp' attribute on <testsuite> is is now in ISO
8601 local time, without any time zone specified
- The 'hostname' attribute on <testsuite> is now included
- The 'classname' attribute on <testcase> is now included
- The non-standard 'result' attribute on <testcase> has
been removed
- The non-standard 'result' attribute on <failure> has
been renamed to 'type'
- The <system-out> element on <testsuite> is always included,
even when empty
- The non-standard 'tag' attribute on <failure> has been
removed. Data-driven tests are now represented as individual
<testcase> elements, e.g.:
<testcase name="someTest(someData X)" ...>
<testcase name="someTest(someData Y)" ...>
<testcase name="someTest(someData Z)" ...>
The resulting XML validates against both the de-facto Apache Ant
'JUnit 4' schema and the Jenkins JUnit plugin schema.
Task-number: QTBUG-95424
Change-Id: I6fc9abedbfb319f2545b99b37d059b18c16776ff
Reviewed-by: Mårten Nordheim <marten.nordheim@qt.io>
2021-07-29 07:59:59 +00:00
|
|
|
Expected (QString("hello0")): "hello0""/>
|
|
|
|
<!-- type="qdebug" message="cleanup test3 data2" -->
|
2011-04-27 10:05:43 +00:00
|
|
|
</testcase>
|
testlib: Improve JUnit XML conformance
The JUnit test framework did not initially have any XML reporting
facilities built in. Instead, the XML report was generated by the
Apache Ant JUnit task:
https://github.com/apache/ant/search?q=filename%3AXMLJUnitResultFormatter.java
Many users interacted with these reports via the Jenkins JUnit plugin,
which provided graphical visualization of the test results:
https://plugins.jenkins.io/junit/
Due to the lack of an official XML schema for the Apache Ant JUnit
report there was some confusion about what the actual format was.
People started documenting the de-facto format, both as produced
by Ant, and as consumed by Jenkins:
https://github.com/windyroad/JUnit-Schema/blob/master/JUnit.xsd
https://github.com/junit-team/junit5/search?q=filename%3Ajenkins-junit.xsd
The XML produced by the Qt Test JUnit reporter was far from these
schemas, causing issues when importing results into tools such
as Jenkins, Allure2, or Test Center.
The following changes have been made to improve conformance:
- The 'timestamp' attribute on <testsuite> is is now in ISO
8601 local time, without any time zone specified
- The 'hostname' attribute on <testsuite> is now included
- The 'classname' attribute on <testcase> is now included
- The non-standard 'result' attribute on <testcase> has
been removed
- The non-standard 'result' attribute on <failure> has
been renamed to 'type'
- The <system-out> element on <testsuite> is always included,
even when empty
- The non-standard 'tag' attribute on <failure> has been
removed. Data-driven tests are now represented as individual
<testcase> elements, e.g.:
<testcase name="someTest(someData X)" ...>
<testcase name="someTest(someData Y)" ...>
<testcase name="someTest(someData Z)" ...>
The resulting XML validates against both the de-facto Apache Ant
'JUnit 4' schema and the Jenkins JUnit plugin schema.
Task-number: QTBUG-95424
Change-Id: I6fc9abedbfb319f2545b99b37d059b18c16776ff
Reviewed-by: Mårten Nordheim <marten.nordheim@qt.io>
2021-07-29 07:59:59 +00:00
|
|
|
<testcase name="cleanupTestCase" classname="tst_Subtest" time="@TEST_DURATION@">
|
2020-07-21 23:38:42 +00:00
|
|
|
<!-- type="qdebug" message="cleanupTestCase cleanupTestCase (null)" -->
|
2011-04-27 10:05:43 +00:00
|
|
|
</testcase>
|
2021-01-13 10:21:01 +00:00
|
|
|
<system-out>
|
2013-10-16 13:59:27 +00:00
|
|
|
<![CDATA[initTestCase initTestCase (null)]]>
|
|
|
|
<![CDATA[init test1 (null)]]>
|
|
|
|
<![CDATA[test1 test1 (null)]]>
|
|
|
|
<![CDATA[cleanup test1 (null)]]>
|
|
|
|
<![CDATA[test2_data test2 (null)]]>
|
|
|
|
<![CDATA[test2_data end]]>
|
|
|
|
<![CDATA[init test2 data0]]>
|
|
|
|
<![CDATA[test2 test2 data0]]>
|
|
|
|
<![CDATA[test2 end]]>
|
|
|
|
<![CDATA[cleanup test2 data0]]>
|
|
|
|
<![CDATA[init test2 data1]]>
|
|
|
|
<![CDATA[test2 test2 data1]]>
|
|
|
|
<![CDATA[test2 end]]>
|
|
|
|
<![CDATA[cleanup test2 data1]]>
|
|
|
|
<![CDATA[init test2 data2]]>
|
|
|
|
<![CDATA[test2 test2 data2]]>
|
|
|
|
<![CDATA[test2 end]]>
|
|
|
|
<![CDATA[cleanup test2 data2]]>
|
|
|
|
<![CDATA[test3_data test3 (null)]]>
|
|
|
|
<![CDATA[test3_data end]]>
|
|
|
|
<![CDATA[init test3 data0]]>
|
|
|
|
<![CDATA[test2 test3 data0]]>
|
|
|
|
<![CDATA[test2 end]]>
|
|
|
|
<![CDATA[cleanup test3 data0]]>
|
|
|
|
<![CDATA[init test3 data1]]>
|
|
|
|
<![CDATA[test2 test3 data1]]>
|
|
|
|
<![CDATA[cleanup test3 data1]]>
|
|
|
|
<![CDATA[init test3 data2]]>
|
|
|
|
<![CDATA[test2 test3 data2]]>
|
|
|
|
<![CDATA[cleanup test3 data2]]>
|
|
|
|
<![CDATA[cleanupTestCase cleanupTestCase (null)]]>
|
2021-01-13 10:21:01 +00:00
|
|
|
</system-out>
|
|
|
|
<system-err/>
|
2011-04-27 10:05:43 +00:00
|
|
|
</testsuite>
|