diff options
Diffstat (limited to 'samples')
-rw-r--r-- | samples/m0.xsd | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/samples/m0.xsd b/samples/m0.xsd new file mode 100644 index 0000000..8a44b3a --- /dev/null +++ b/samples/m0.xsd @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!--this schema is used to validate the report generated and is only meant as a dev test--> +<!--this is meant to test mutator-lvl0 not tinyxml2--> + +<mutagen:schema xmlns:mutagen="http://www.w3.org/2001/XMLSchema" targetNamespace="http://www.w3.org/2001/XMLSchema" xmlns="http://www.w3.org/2001/XMLSchema"> + + <mutagen:element name="Report"> + <mutagen:complexType> + <mutagen:sequence> + <mutagen:element name="DoomedStrains" maxOccurs="1"/> + </mutagen:sequence> + </mutagen:complexType> + </mutagen:element> + + <mutagen:element name="DoomedStrains"> + <mutagen:complexType> + <mutagen:sequence> + <mutagen:element name="DoomedStrain" maxOccurs="unbounded"/> + </mutagen:sequence> + </mutagen:complexType> + </mutagen:element> + + <mutagen:element name="DoomedStrain"> + <mutagen:complexType> + <mutagen:sequence> + <mutagen:element name="Strain" maxOccurs="unbounded"/> + </mutagen:sequence> + </mutagen:complexType> + </mutagen:element> + +</mutagen:schema> |