customFeatureTest(f, VALID_CUSTOMER_NAME);
}
@Test(expected=SOAPFaultException.class)
public void testLocalCustomSchemaAbsolutePathNotExist() throws Exception {
SchemaValidationFeature f = new SchemaValidationFeature();
f.setAppliesTo("consumer");
f.setMessage("response");
f.setType("CustomSchema");
f.setPath(NOT_EXISTING_SCHEMA_ABSOLUTE_PATH);
customFeatureTest(f, VALID_CUSTOMER_NAME);
}