private boolean doTest(TestLoader testLoader, CommandLine cmdLine) throws Exception {
XmlConfigurationReader xmlConfigReader = new XmlConfigurationReader(testLoader.getComponentName());
Configuration config = new CliConfiguration(xmlConfigReader, cmdLine);
AbstractTest test = testLoader.getTest(config);
test.test();
if (test.getResult() == TestResult.DISABLED) {
return true;
}
printf("### %s ###", xmlConfigReader.getMetadataValue("jcr:title"));