private SQSTaskTimerBean taskTimerBean = new SQSTaskTimerBeanMock();
@BeforeClass
public void setupElasticMQ() {
elasticNode = NodeBuilder.withStorage(new InMemoryStorage());
sqsServer = new SQSRestServerBuilder(elasticNode.nativeClient(), ELASTIMQ_PORT, new NodeAddress("http", "localhost", ELASTIMQ_PORT, "")).start();
AmazonSQSClient sqsClient = new AmazonSQSClient(new BasicAWSCredentials("1234", "1234"));
sqsClient.setEndpoint("http://localhost:" + ELASTIMQ_PORT);
sqsClient.createQueue(new CreateQueueRequest(TEST_QUEUE));