use of org.apache.qpid.disttest.controller.config.ConfigReader in project qpid-broker-j by apache.
the class ControllerRunner method buildTestConfigFrom.
private Config buildTestConfigFrom(String testConfigFile) {
ConfigReader configReader = new ConfigReader();
Config testConfig;
try {
testConfig = configReader.getConfigFromFile(testConfigFile);
} catch (IOException e) {
throw new DistributedTestException("Exception while loading test config from '" + testConfigFile + "'", e);
}
return testConfig;
}
Aggregations