Last sync 2016.04.01
[deliverable/titan.core.git] / etc / xsd / Junit.xsd
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 2000-2016 Ericsson Telecom AB
4 All rights reserved. This program and the accompanying materials
5 are made available under the terms of the Eclipse Public License v1.0
6 which accompanies this distribution, and is available at
7 http://www.eclipse.org/legal/epl-v10.html
8
9 Contributors:
10 Balasko, Jeno
11 Lovassy, Arpad
12 Szalay, Akos
13 -->
14 <?xml version="1.0" encoding="UTF-8" ?>
15 <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
16
17 <xs:element name="failure">
18 <xs:complexType mixed="true">
19 <xs:attribute name="type" type="xs:string" use="optional"/>
20 </xs:complexType>
21 </xs:element>
22
23 <xs:element name="skipped" type="xs:string"/>
24
25 <xs:element name="error">
26 <xs:complexType mixed="true">
27 <xs:attribute name="type" type="xs:string" use="optional"/>
28 </xs:complexType>
29 </xs:element>
30
31 <xs:element name="testcase">
32 <xs:complexType>
33 <xs:sequence>
34 <xs:element ref="skipped" minOccurs="0" maxOccurs="1"/>
35 <xs:element ref="error" minOccurs="0" maxOccurs="unbounded"/>
36 <xs:element ref="failure" minOccurs="0" maxOccurs="unbounded"/>
37 </xs:sequence>
38 <xs:attribute name="classname" type="xs:string" use="required"/>
39 <xs:attribute name="name" type="xs:string" use="required"/>
40 <xs:attribute name="time" type="xs:string" use="required"/>
41 </xs:complexType>
42 </xs:element>
43
44 <xs:element name="testsuite">
45 <xs:complexType>
46 <xs:sequence>
47 <xs:element ref="testcase" minOccurs="0" maxOccurs="unbounded"/>
48 </xs:sequence>
49 <xs:attribute name="name" type="xs:string" use="required"/>
50 </xs:complexType>
51 </xs:element>
52
53 </xs:schema>
54
This page took 0.03772 seconds and 5 git commands to generate.