public void basicFeatureTest(final String[] springContextPath, String customerName) throws Exception{
clientCtxt = new ClassPathXmlApplicationContext(springContextPath);
CustomerServiceTester client = (CustomerServiceTester)clientCtxt.getBean("tester");
client.testCustomerService(customerName);
clientCtxt.close();
}
public void customFeatureTest(SchemaValidationFeature feature, String customerName) throws Exception{
clientCtxt = new ClassPathXmlApplicationContext("classpath:spring/client/feature/client-defaultApplicationContext.xml");