boolean testSuccess = false;
if (!testingBehavior.equals("skip") &&
!(process.getProcess().getTestCases() == null) &&
!process.getProcess().getTestCases().isEmpty()) {
ProcessTester tester = new ProcessTester(process,
runtimeProperties.containsKey("verbose"));
testSuccess = tester.testAll();
if (testingBehavior.equals("normal") && !testSuccess) {
System.err.println("Test failed, exiting.");
System.exit(1);
}
if (testingBehavior.equals("alone")) {