Element root = new Element("root");
org.jdom.Document wsdl = new org.jdom.Document(root);
type.writeSchema(root);
Document doc = new DOMOutputter().output(wsdl);
addNamespace("xsd", SOAPConstants.XSD);
assertValid("//xsd:simpleType[@name='test']/xsd:restriction[@base='xsd:string']", doc);
assertValid("//xsd:restriction[@base='xsd:string']/xsd:enumeration[@value='VALUE1']", doc);
assertValid("//xsd:restriction[@base='xsd:string']/xsd:enumeration[@value='VALUE2']", doc);
}