boot();
cronJobManager.createJob(SanitizedCronJob.fromUnsanitized(CRON_JOB));
cronJobManager.startJobNow(JOB_KEY);
firstExecutionTriggered.await();
cronJobManager.startJobNow(JOB_KEY);
assertEquals(1, secondExecutionTriggered.getCount());
firstExecutionCompleted.countDown();
secondExecutionTriggered.await();
secondExecutionTriggered.countDown();
}