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