Interface XMLConstants
- All Known Implementing Classes:
XMLJUnitResultFormatter
,XMLResultAggregator
public interface XMLConstants
Interface groups XML constants.
Interface that groups all constants used throughout the XML
documents that are generated by the XMLJUnitResultFormatter
.
<!ELEMENT testsuites (testsuite*)> <!ELEMENT testsuite (properties, testcase*, failure?, error?, system-out?, system-err?)> <!ATTLIST testsuite name CDATA #REQUIRED> <!ATTLIST testsuite tests CDATA #REQUIRED> <!ATTLIST testsuite failures CDATA #REQUIRED> <!ATTLIST testsuite errors CDATA #REQUIRED> <!ATTLIST testsuite time CDATA #REQUIRED> <!ATTLIST testsuite package CDATA #IMPLIED> <!ATTLIST testsuite id CDATA #IMPLIED> <!ELEMENT properties (property*)> <!ELEMENT property EMPTY> <!ATTLIST property name CDATA #REQUIRED> <!ATTLIST property value CDATA #REQUIRED> <!ELEMENT testcase (failure?, error?)> <!ATTLIST testcase name CDATA #REQUIRED> <!ATTLIST testcase classname CDATA #IMPLIED> <!ATTLIST testcase time CDATA #REQUIRED> <!ELEMENT failure (#PCDATA)> <!ATTLIST failure message CDATA #IMPLIED> <!ATTLIST failure type CDATA #REQUIRED> <!ELEMENT error (#PCDATA)> <!ATTLIST error message CDATA #IMPLIED> <!ATTLIST error type CDATA #REQUIRED> <!ELEMENT system-err (#PCDATA)> <!ELEMENT system-out (#PCDATA)>
- See Also:
XMLJUnitResultFormatter
,XMLResultAggregator
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic String
classname attribute for testcase elementsstatic String
errors attribute for testsuite elementsstatic String
failures attribute for testsuite elementsstatic String
id attributestatic String
message attribute for failure elementsstatic String
name attribute for property, testcase and testsuite elementsstatic String
package attribute for the aggregate documentstatic String
static String
tests attribute for testsuite elementsstatic String
time attribute for testcase and testsuite elementsstatic String
type attribute for failure and error elementsstatic String
value attribute for property elementsstatic String
the error elementstatic String
the failure elementstatic String
name of host running the testsstatic String
the properties elementstatic String
the property elementstatic String
the system-err elementstatic String
the system-out elementstatic String
the testcase elementstatic String
the testsuite elementstatic String
the testsuites element for the aggregate documentstatic String
timestamp of test cases
-
Field Details
-
TESTSUITES
the testsuites element for the aggregate document- See Also:
- Constant Field Values
-
TESTSUITE
the testsuite element- See Also:
- Constant Field Values
-
TESTCASE
the testcase element- See Also:
- Constant Field Values
-
ERROR
the error element- See Also:
- Constant Field Values
-
FAILURE
the failure element- See Also:
- Constant Field Values
-
SYSTEM_ERR
the system-err element- See Also:
- Constant Field Values
-
SYSTEM_OUT
the system-out element- See Also:
- Constant Field Values
-
ATTR_PACKAGE
package attribute for the aggregate document- See Also:
- Constant Field Values
-
ATTR_NAME
name attribute for property, testcase and testsuite elements- See Also:
- Constant Field Values
-
ATTR_TIME
time attribute for testcase and testsuite elements- See Also:
- Constant Field Values
-
ATTR_ERRORS
errors attribute for testsuite elements- See Also:
- Constant Field Values
-
ATTR_FAILURES
failures attribute for testsuite elements- See Also:
- Constant Field Values
-
ATTR_TESTS
tests attribute for testsuite elements- See Also:
- Constant Field Values
-
ATTR_SKIPPED
- See Also:
- Constant Field Values
-
ATTR_TYPE
type attribute for failure and error elements- See Also:
- Constant Field Values
-
ATTR_MESSAGE
message attribute for failure elements- See Also:
- Constant Field Values
-
PROPERTIES
the properties element- See Also:
- Constant Field Values
-
PROPERTY
the property element- See Also:
- Constant Field Values
-
ATTR_VALUE
value attribute for property elements- See Also:
- Constant Field Values
-
ATTR_CLASSNAME
classname attribute for testcase elements- See Also:
- Constant Field Values
-
ATTR_ID
id attribute- See Also:
- Constant Field Values
-
TIMESTAMP
timestamp of test cases- See Also:
- Constant Field Values
-
HOSTNAME
name of host running the tests- See Also:
- Constant Field Values
-