8000 Updates to junit xsd · utPLSQL/utPLSQL@2ea9a53 · GitHub
[go: up one dir, main page]

Skip to content

Commit 2ea9a53

Browse files
committed
Updates to junit xsd
1 parent ed156d7 commit 2ea9a53

File tree

1 file changed

+16
-10
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
3-
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
2+
<xs:schema
3+
xmlns:xs="http://www.w3.org/2001/XMLSchema"
44
elementFormDefault="qualified"
55
attributeFormDefault="unqualified">
66
<xs:annotation>
@@ -71,10 +71,11 @@ Permission to waive conditions of this license may be requested from Windy Road
7171
<xs:element name="testcase" minOccurs="0" maxOccurs="unbounded">
7272
<xs:complexType>
7373
<xs:choice minOccurs="0">
74-
<xs:element name="error">
75-
<xs:annotation>
76-
<xs:documentation xml:lang="en">Indicates that the test errored. An errored test is one that had an unanticipated problem. e.g., an unchecked throwable; or a problem with the implementation of the test. Contains as a text node relevant data for the error, e.g., a stack trace</xs:documentation>
77-
</xs:annotation>
74+
<xs:element name="skipped" />
75+
<xs:element name="error" minOccurs="0" maxOccurs="1">
76+
<xs:annotation>
77+
<xs:documentation xml:lang="en">Indicates that the test errored. An errored test is one that had an unanticipated problem. e.g., an unchecked throwable; or a problem with the implementation of the test. Contains as a text node relevant data for the error, e.g., a stack trace</xs:documentation>
78+
</xs:annotation>
7879
<xs:complexType>
7980
<xs:simpleContent>
8081
<xs:extension base="pre-string">
@@ -93,9 +94,9 @@ Permission to waive conditions of this license may be requested from Windy Road
9394
</xs:complexType>
9495
</xs:element>
9596
<xs:element name="failure">
96-
<xs:annotation>
97-
<xs:documentation xml:lang="en">Indicates that the test failed. A failure is a test which the code has explicitly failed by using the mechanisms for that purpose. e.g., via an assertEquals. Contains as a text node relevant data for the failure, e.g., a stack trace</xs:documentation>
98-
</xs:annotation>
97+
<xs:annotation>
98+
<xs:documentation xml:lang="en">Indicates that the test failed. A failure is a test which the code has explicitly failed by using the mechanisms for that purpose. e.g., via an assertEquals. Contains as a text node relevant data for the failure, e.g., a stack trace</xs:documentation>
99+
</xs:annotation>
99100
<xs:complexType>
100101
<xs:simpleContent>
101102
<xs:extension base="pre-string">
@@ -192,6 +193,11 @@ Permission to waive conditions of this license may be requested from Windy Road
192193
<xs:documentation xml:lang="en">The total number of tests in the suite that errored. An errored test is one that had an unanticipated problem. e.g., an unchecked throwable; or a problem with the implementation of the test.</xs:documentation>
193194
</xs:annotation>
194195
</xs:attribute>
196+
<xs:attribute name="skipped" type="xs:int" use="optional">
197+
<xs:annotation>
198+
<xs:documentation xml:lang="en">The total number of ignored or skipped tests in the suite.</xs:documentation>
199+
</xs:annotation>
200+
</xs:attribute>
195201
<xs:attribute name="time" type="xs:decimal" use="required">
196202
<xs:annotation>
197203
<xs:documentation xml:lang="en">Time taken (in seconds) to execute the tests in the suite</xs:documentation>
@@ -203,4 +209,4 @@ Permission to waive conditions of this license may be requested from Windy Road
203209
<xs:whiteSpace value="preserve"/>
204210
</xs:restriction>
205211
</xs:simpleType>
206-
</xs:schema>
212+
</xs:schema>