public NodeOperationProcessorTest() throws InterruptedException {
when(_context.getNode()).thenReturn(_node);
when(_node.isRunning()).thenReturn(true);
when(_node.getName()).thenReturn("aNode");
_processor = new NodeOperationProcessor(_queue, _context);
// when(queue.peek()).thenAnswer(new SleepingAnswer());
}