@Before
  public void setUp() {

    executorService = ExecutorServiceFactory.newExecutorService();

    executorService.init();
    super.setUp();
  }
 @Test
 @Ignore("It's only for JPA based as it in memory does not care about delays")
 public void testCustomIncrementingRequestRetrySpecialValues() throws InterruptedException {
   super.testCustomIncrementingRequestRetrySpecialValues();
 }
 @Override
 @Test
 @Ignore("It's only for JPA based as it in memory does not care about delays")
 public void testCustomConstantRequestRetry() throws InterruptedException {
   super.testCustomConstantRequestRetry();
 }
 @After
 public void tearDown() {
   super.tearDown();
   executorService.destroy();
 }
 @Test
 @Ignore("It's only for JPA based as it in memory does not care about priorities")
 public void testPrioritizedJobsExecutionInvalidProrities() throws InterruptedException {
   super.testPrioritizedJobsExecutionInvalidProrities();
 }