// Create test context
TestRunnerContext context = new TestRunnerContext();
Path localRoot = Paths.get(".").toAbsolutePath();
context.setLocalRoot(localRoot.toString());
JndiServiceLocator serviceLocator = ServiceLocatorBuilder.createRemoteByConfigurationFiles();
TestRunnerFacade testRunnerFacade = serviceLocator.lookup(TestRunnerFacade.class);
this.doEvaluation(testRunnerFacade, context);
} catch (Throwable t) {
throw this.getActualThrowable(t);
}
}