@Test
public void testExecutionMethod() throws InterruptedException {
AsyncTaskExecutor executor = new SimpleAsyncTaskExecutor("tTestExecutionMethod");
SignallingRunnable runner = new SignallingRunnable("testExecutionMethod");
executor.execute(runner, 125L);
assertLastExecutionOperation(runner);
assertCurrentThreadExecution();
}