@Override
public void runAllTests( final Path testResourcePath,
Event<TestResultMessage> customTestResultEvent ) {
try {
final KieProject project = projectService.resolveProject( testResourcePath );
List<Path> scenarioPaths = loadScenarioPaths( testResourcePath );
List<Scenario> scenarios = new ArrayList<Scenario>();
for ( Path path : scenarioPaths ) {
Scenario s = load( path );
scenarios.add( s );