/*
* Load data source model, stored in specified file to the configuration
*/
protected void setModel(String filename) throws Exception {
String xml = readXmlResource(System.getProperty("jbossas.ts.integ.dir") + "/basic/src/test/resources/jca/metrics/data-sources/" + filename);
List<ModelNode> operations = xmlToModelOperations(xml, Namespace.CURRENT.getUriString(), new DataSourceSubsystemParser());
executeOperation(operationListToCompositeOperation(operations));
}