@BeforeClass
public static void setup() {
log.info("Test initialized");
jobs = new ArrayList<String>();
terminated = new ArrayList<String>();
jobManager = new JobManagerImpl();
for (int x = 0; x < numberOfJobs; x++) {
addJob();
}
log.info("Launched {} processes", numberOfJobs);