public CreateSchemaTest(String arg) {
super(arg);
}
protected void setUp() throws Exception {
WSDLVersionWrapper wsdlVersionWrapper = null;
if (null == this.womDescription) {
String path = getTestResourceFile("BookQuote.wsdl").getAbsolutePath();
wsdlVersionWrapper =
WOMBuilderFactory.getBuilder(WSDLConstants.WSDL_1_1)
.build(path);
this.womDescription = wsdlVersionWrapper.getDescription();
}
if (null == wsdl4jDefinition) {
this.wsdl4jDefinition = wsdlVersionWrapper.getDefinition();
}
}