use of com.hazelcast.simulator.worker.operations.CreateTestOperation in project hazelcast-simulator by hazelcast.
the class AgentOperationProcessorTest method testUnknownOperation.
@Test(expected = ProcessException.class)
public void testUnknownOperation() throws Exception {
CreateTestOperation op = mock(CreateTestOperation.class);
processor.process(op, source, promise);
}
Aggregations