use of com.hazelcast.simulator.worker.testcontainer.TestManager in project hazelcast-simulator by hazelcast.
the class WorkerOperationProcessorTest method before.
@Before
public void before() {
setupFakeUserDir();
ExceptionReporter.reset();
testManager = mock(TestManager.class);
worker = mock(Worker.class);
scriptExecutor = mock(ScriptExecutor.class);
processor = new WorkerOperationProcessor(worker, testManager, scriptExecutor);
promise = new StubPromise();
}
Aggregations