use of org.drools.workbench.screens.scenariosimulation.client.events.RedoEvent in project drools-wb by kiegroup.
the class ScenarioSimulationEventHandlerTest method onRedoEvent.
@Test
public void onRedoEvent() {
RedoEvent event = new RedoEvent();
scenarioSimulationEventHandler.onEvent(event);
verify(scenarioCommandRegistryManagerMock, times(1)).redo(eq(scenarioSimulationContextLocal));
}
Aggregations