Search in sources :

Example 1 with SetPropertyHeaderEvent

use of org.drools.workbench.screens.scenariosimulation.client.events.SetPropertyHeaderEvent in project drools-wb by kiegroup.

the class ScenarioSimulationEventHandlerTest method onSetPropertyHeaderCollectionEvent.

@Test
public void onSetPropertyHeaderCollectionEvent() {
    SetPropertyHeaderEvent event = new SetPropertyHeaderEvent(GridWidget.SIMULATION, FULL_PACKAGE, CLASS_NAME, MULTIPART_VALUE_ELEMENTS, LIST_CLASS_NAME, FactMappingValueType.NOT_EXPRESSION, IMPORTED_PREFIX);
    when(scenarioGridModelMock.isAlreadyAssignedProperty(MULTIPART_VALUE_ELEMENTS)).thenReturn(false);
    when(scenarioGridModelMock.isSelectedColumnEmpty()).thenReturn(false);
    when(scenarioGridModelMock.isSameSelectedColumnProperty(anyList(), any())).thenReturn(false);
    when(scenarioGridModelMock.isSameSelectedColumnType(anyString())).thenReturn(false);
    scenarioSimulationEventHandler.onEvent(event);
    verify(scenarioSimulationEventHandler, never()).onEvent(isA(ScenarioNotificationEvent.class));
    verify(scenarioSimulationEventHandler, never()).commonExecution(isA(SetPropertyHeaderCommand.class), anyBoolean());
    verify(preserveDeletePopupPresenterMock, never()).show(anyString(), anyString(), anyString(), anyString(), anyString(), anyString(), anyString(), anyString(), any(), any());
    verify(deletePopupPresenterMock, times(1)).show(eq(ScenarioSimulationEditorConstants.INSTANCE.deleteScenarioMainTitle()), eq(ScenarioSimulationEditorConstants.INSTANCE.deleteScenarioMainQuestion()), eq(ScenarioSimulationEditorConstants.INSTANCE.deleteScenarioText1()), eq(ScenarioSimulationEditorConstants.INSTANCE.deleteScenarioTextQuestion()), isNull(), eq(ScenarioSimulationEditorConstants.INSTANCE.deleteValues()), isA(org.uberfire.mvp.Command.class));
    // 
    reset(scenarioSimulationEventHandler, deletePopupPresenterMock, preserveDeletePopupPresenterMock);
    when(scenarioGridModelMock.isAlreadyAssignedProperty(MULTIPART_VALUE_ELEMENTS)).thenReturn(false);
    when(scenarioGridModelMock.isSelectedColumnEmpty()).thenReturn(false);
    when(scenarioGridModelMock.isSameSelectedColumnProperty(anyList(), any())).thenReturn(false);
    when(scenarioGridModelMock.isSameSelectedColumnType(anyString())).thenReturn(true);
    scenarioSimulationEventHandler.onEvent(event);
    verify(scenarioSimulationEventHandler, never()).onEvent(isA(ScenarioNotificationEvent.class));
    verify(scenarioSimulationEventHandler, never()).commonExecution(isA(SetPropertyHeaderCommand.class), anyBoolean());
    verify(preserveDeletePopupPresenterMock, never()).show(anyString(), anyString(), anyString(), anyString(), anyString(), anyString(), anyString(), anyString(), any(), any());
    verify(deletePopupPresenterMock, times(1)).show(eq(ScenarioSimulationEditorConstants.INSTANCE.deleteScenarioMainTitle()), eq(ScenarioSimulationEditorConstants.INSTANCE.deleteScenarioMainQuestion()), eq(ScenarioSimulationEditorConstants.INSTANCE.deleteScenarioText1()), eq(ScenarioSimulationEditorConstants.INSTANCE.deleteScenarioTextQuestion()), isNull(), eq(ScenarioSimulationEditorConstants.INSTANCE.deleteValues()), isA(org.uberfire.mvp.Command.class));
}
Also used : SetPropertyHeaderEvent(org.drools.workbench.screens.scenariosimulation.client.events.SetPropertyHeaderEvent) SetPropertyHeaderCommand(org.drools.workbench.screens.scenariosimulation.client.commands.actualcommands.SetPropertyHeaderCommand) SetInstanceHeaderCommand(org.drools.workbench.screens.scenariosimulation.client.commands.actualcommands.SetInstanceHeaderCommand) InsertColumnCommand(org.drools.workbench.screens.scenariosimulation.client.commands.actualcommands.InsertColumnCommand) RunSingleScenarioCommand(org.drools.workbench.screens.scenariosimulation.client.commands.actualcommands.RunSingleScenarioCommand) DeleteRowCommand(org.drools.workbench.screens.scenariosimulation.client.commands.actualcommands.DeleteRowCommand) AbstractScenarioSimulationCommand(org.drools.workbench.screens.scenariosimulation.client.commands.actualcommands.AbstractScenarioSimulationCommand) DuplicateRowCommand(org.drools.workbench.screens.scenariosimulation.client.commands.actualcommands.DuplicateRowCommand) UpdateSettingsDataCommand(org.drools.workbench.screens.scenariosimulation.client.commands.actualcommands.UpdateSettingsDataCommand) DuplicateInstanceCommand(org.drools.workbench.screens.scenariosimulation.client.commands.actualcommands.DuplicateInstanceCommand) PrependRowCommand(org.drools.workbench.screens.scenariosimulation.client.commands.actualcommands.PrependRowCommand) InsertRowCommand(org.drools.workbench.screens.scenariosimulation.client.commands.actualcommands.InsertRowCommand) SetGridCellValueCommand(org.drools.workbench.screens.scenariosimulation.client.commands.actualcommands.SetGridCellValueCommand) AppendColumnCommand(org.drools.workbench.screens.scenariosimulation.client.commands.actualcommands.AppendColumnCommand) PrependColumnCommand(org.drools.workbench.screens.scenariosimulation.client.commands.actualcommands.PrependColumnCommand) DeleteColumnCommand(org.drools.workbench.screens.scenariosimulation.client.commands.actualcommands.DeleteColumnCommand) DisableTestToolsCommand(org.drools.workbench.screens.scenariosimulation.client.commands.actualcommands.DisableTestToolsCommand) AppendRowCommand(org.drools.workbench.screens.scenariosimulation.client.commands.actualcommands.AppendRowCommand) ReloadTestToolsCommand(org.drools.workbench.screens.scenariosimulation.client.commands.actualcommands.ReloadTestToolsCommand) EnableTestToolsCommand(org.drools.workbench.screens.scenariosimulation.client.commands.actualcommands.EnableTestToolsCommand) SetHeaderCellValueCommand(org.drools.workbench.screens.scenariosimulation.client.commands.actualcommands.SetHeaderCellValueCommand) SetPropertyHeaderCommand(org.drools.workbench.screens.scenariosimulation.client.commands.actualcommands.SetPropertyHeaderCommand) ScenarioNotificationEvent(org.drools.workbench.screens.scenariosimulation.client.events.ScenarioNotificationEvent) Test(org.junit.Test) AbstractScenarioSimulationTest(org.drools.workbench.screens.scenariosimulation.client.AbstractScenarioSimulationTest)

Example 2 with SetPropertyHeaderEvent

use of org.drools.workbench.screens.scenariosimulation.client.events.SetPropertyHeaderEvent in project drools-wb by kiegroup.

the class TestToolsPresenter method onModifyColumn.

@Override
public void onModifyColumn() {
    if (editingColumnEnabled) {
        if (selectedListGroupItemView != null) {
            String className = selectedListGroupItemView.getActualClassName();
            getFactModelTreeFromMaps(className).ifPresent(factModelTree -> eventBus.fireEvent(new SetPropertyHeaderEvent(gridWidget, factModelTree.getFullPackage(), factModelTree.getTypeName(), Collections.unmodifiableList(Arrays.asList(className)), factModelTree.getFullTypeName(), FactMappingValueType.EXPRESSION, factModelTree.getImportPrefix())));
        } else if (selectedFieldItemView != null) {
            String baseClass = selectedFieldItemView.getFullPath().get(0);
            List<String> propertyNameElements = new ArrayList<>(selectedFieldItemView.getFullPath());
            if (!isSimple(baseClass)) {
                propertyNameElements.add(selectedFieldItemView.getFieldName());
            }
            getFactModelTreeFromMaps(baseClass).ifPresent(factModelTree -> eventBus.fireEvent(new SetPropertyHeaderEvent(gridWidget, factModelTree.getFullPackage(), factModelTree.getTypeName(), Collections.unmodifiableList(propertyNameElements), selectedFieldItemView.getClassName(), FactMappingValueType.NOT_EXPRESSION, factModelTree.getImportPrefix())));
        }
    }
}
Also used : IDENTIFIER(org.drools.workbench.screens.scenariosimulation.client.rightpanel.TestToolsPresenter.IDENTIFIER) Arrays(java.util.Arrays) EventBus(com.google.gwt.event.shared.EventBus) FactModelTree(org.drools.workbench.screens.scenariosimulation.model.typedescriptor.FactModelTree) GridWidget(org.drools.workbench.screens.scenariosimulation.client.enums.GridWidget) FactMappingValueType(org.drools.scenariosimulation.api.model.FactMappingValueType) ArrayList(java.util.ArrayList) Inject(javax.inject.Inject) List(java.util.List) TreeMap(java.util.TreeMap) SetPropertyHeaderEvent(org.drools.workbench.screens.scenariosimulation.client.events.SetPropertyHeaderEvent) Map(java.util.Map) Optional(java.util.Optional) ScenarioSimulationEditorConstants(org.drools.workbench.screens.scenariosimulation.client.resources.i18n.ScenarioSimulationEditorConstants) ApplicationScoped(javax.enterprise.context.ApplicationScoped) WorkbenchScreen(org.uberfire.client.annotations.WorkbenchScreen) Collections(java.util.Collections) SortedMap(java.util.SortedMap) DEFAULT_PREFERRED_WIDHT(org.drools.workbench.screens.scenariosimulation.client.rightpanel.TestToolsPresenter.DEFAULT_PREFERRED_WIDHT) SetPropertyHeaderEvent(org.drools.workbench.screens.scenariosimulation.client.events.SetPropertyHeaderEvent) ArrayList(java.util.ArrayList) List(java.util.List)

Example 3 with SetPropertyHeaderEvent

use of org.drools.workbench.screens.scenariosimulation.client.events.SetPropertyHeaderEvent in project drools-wb by kiegroup.

the class ScenarioSimulationEventHandlerTest method onSetPropertyHeaderEvent.

@Test
public void onSetPropertyHeaderEvent() {
    SetPropertyHeaderEvent event = new SetPropertyHeaderEvent(GridWidget.SIMULATION, FULL_PACKAGE, CLASS_NAME, MULTIPART_VALUE_ELEMENTS, VALUE_CLASS_NAME, FactMappingValueType.NOT_EXPRESSION, IMPORTED_PREFIX);
    when(scenarioGridModelMock.getSelectedColumn()).thenReturn(null);
    scenarioSimulationEventHandler.onEvent(event);
    verify(scenarioSimulationEventHandler, never()).onEvent(isA(ScenarioNotificationEvent.class));
    verify(scenarioSimulationEventHandler, never()).commonExecution(isA(SetPropertyHeaderCommand.class), anyBoolean());
    verify(preserveDeletePopupPresenterMock, never()).show(anyString(), anyString(), anyString(), anyString(), anyString(), anyString(), anyString(), anyString(), any(), any());
    verify(deletePopupPresenterMock, never()).show(anyString(), anyString(), anyString(), anyString(), anyString(), anyString(), any());
    // 
    doReturn(gridColumnMock).when(scenarioGridModelMock).getSelectedColumn();
    when(scenarioGridModelMock.isAlreadyAssignedProperty(MULTIPART_VALUE_ELEMENTS)).thenReturn(true);
    scenarioSimulationEventHandler.onEvent(event);
    verify(scenarioSimulationEventHandler, times(1)).onEvent(isA(ScenarioNotificationEvent.class));
    verify(scenarioSimulationEventHandler, never()).commonExecution(isA(SetPropertyHeaderCommand.class), anyBoolean());
    verify(preserveDeletePopupPresenterMock, never()).show(anyString(), anyString(), anyString(), anyString(), anyString(), anyString(), anyString(), anyString(), any(), any());
    verify(deletePopupPresenterMock, never()).show(anyString(), anyString(), anyString(), anyString(), anyString(), anyString(), any());
    // 
    reset(scenarioSimulationEventHandler);
    when(scenarioGridModelMock.isAlreadyAssignedProperty(MULTIPART_VALUE_ELEMENTS)).thenReturn(false);
    when(scenarioGridModelMock.isSelectedColumnEmpty()).thenReturn(true);
    scenarioSimulationEventHandler.onEvent(event);
    verify(scenarioSimulationEventHandler, never()).onEvent(isA(ScenarioNotificationEvent.class));
    verify(scenarioSimulationEventHandler, never()).commonExecution(isA(SetPropertyHeaderCommand.class), anyBoolean());
    verify(preserveDeletePopupPresenterMock, never()).show(anyString(), anyString(), anyString(), anyString(), anyString(), anyString(), anyString(), anyString(), any(), any());
    verify(deletePopupPresenterMock, never()).show(anyString(), anyString(), anyString(), anyString(), anyString(), anyString(), any());
    // 
    reset(scenarioSimulationEventHandler);
    when(scenarioGridModelMock.isAlreadyAssignedProperty(MULTIPART_VALUE_ELEMENTS)).thenReturn(false);
    when(scenarioGridModelMock.isSelectedColumnEmpty()).thenReturn(false);
    scenarioSimulationEventHandler.onEvent(event);
    verify(scenarioSimulationEventHandler, never()).onEvent(isA(ScenarioNotificationEvent.class));
    verify(scenarioSimulationEventHandler, never()).commonExecution(isA(SetPropertyHeaderCommand.class), anyBoolean());
    verify(preserveDeletePopupPresenterMock, never()).show(anyString(), anyString(), anyString(), anyString(), anyString(), anyString(), anyString(), anyString(), any(), any());
    verify(deletePopupPresenterMock, never()).show(anyString(), anyString(), anyString(), anyString(), anyString(), anyString(), any());
    // 
    reset(scenarioSimulationEventHandler);
    when(scenarioGridModelMock.isAlreadyAssignedProperty(MULTIPART_VALUE_ELEMENTS)).thenReturn(false);
    when(scenarioGridModelMock.isSelectedColumnEmpty()).thenReturn(true);
    when(scenarioGridModelMock.isSameSelectedColumnProperty(anyList(), any())).thenReturn(false);
    when(scenarioGridModelMock.isSameSelectedColumnType(anyString())).thenReturn(true);
    scenarioSimulationEventHandler.onEvent(event);
    verify(scenarioSimulationEventHandler, never()).onEvent(isA(ScenarioNotificationEvent.class));
    verify(scenarioSimulationEventHandler, times(1)).commonExecution(isA(SetPropertyHeaderCommand.class), eq(true));
    verify(preserveDeletePopupPresenterMock, never()).show(anyString(), anyString(), anyString(), anyString(), anyString(), anyString(), anyString(), anyString(), any(), any());
    verify(deletePopupPresenterMock, never()).show(anyString(), anyString(), anyString(), anyString(), anyString(), anyString(), any());
    // 
    reset(scenarioSimulationEventHandler);
    when(scenarioGridModelMock.isAlreadyAssignedProperty(MULTIPART_VALUE_ELEMENTS)).thenReturn(false);
    when(scenarioGridModelMock.isSelectedColumnEmpty()).thenReturn(false);
    when(scenarioGridModelMock.isSameSelectedColumnProperty(anyList(), any())).thenReturn(false);
    when(scenarioGridModelMock.isSameSelectedColumnType(anyString())).thenReturn(true);
    scenarioSimulationEventHandler.onEvent(event);
    verify(scenarioSimulationEventHandler, never()).onEvent(isA(ScenarioNotificationEvent.class));
    verify(scenarioSimulationEventHandler, never()).commonExecution(isA(SetPropertyHeaderCommand.class), anyBoolean());
    verify(preserveDeletePopupPresenterMock, times(1)).show(eq(ScenarioSimulationEditorConstants.INSTANCE.preserveDeleteScenarioMainTitle()), eq(ScenarioSimulationEditorConstants.INSTANCE.preserveDeleteScenarioMainQuestion()), eq(ScenarioSimulationEditorConstants.INSTANCE.preserveDeleteScenarioText1()), eq(ScenarioSimulationEditorConstants.INSTANCE.preserveDeleteScenarioTextQuestion()), eq(ScenarioSimulationEditorConstants.INSTANCE.preserveDeleteScenarioTextOption1()), eq(ScenarioSimulationEditorConstants.INSTANCE.preserveDeleteScenarioTextOption2()), eq(ScenarioSimulationEditorConstants.INSTANCE.preserveValues()), eq(ScenarioSimulationEditorConstants.INSTANCE.deleteValues()), isA(org.uberfire.mvp.Command.class), isA(org.uberfire.mvp.Command.class));
    verify(deletePopupPresenterMock, never()).show(anyString(), anyString(), anyString(), anyString(), anyString(), anyString(), any());
    // 
    reset(scenarioSimulationEventHandler, preserveDeletePopupPresenterMock);
    when(scenarioGridModelMock.isAlreadyAssignedProperty(MULTIPART_VALUE_ELEMENTS)).thenReturn(false);
    when(scenarioGridModelMock.isSelectedColumnEmpty()).thenReturn(true);
    when(scenarioGridModelMock.isSameSelectedColumnProperty(anyList(), any())).thenReturn(true);
    when(scenarioGridModelMock.isSameSelectedColumnType(anyString())).thenReturn(false);
    scenarioSimulationEventHandler.onEvent(event);
    verify(scenarioSimulationEventHandler, never()).onEvent(isA(ScenarioNotificationEvent.class));
    verify(scenarioSimulationEventHandler, times(1)).commonExecution(isA(SetPropertyHeaderCommand.class), eq(true));
    verify(preserveDeletePopupPresenterMock, never()).show(anyString(), anyString(), anyString(), anyString(), anyString(), anyString(), anyString(), anyString(), any(), any());
    verify(deletePopupPresenterMock, never()).show(anyString(), anyString(), anyString(), anyString(), anyString(), anyString(), any());
    // 
    reset(scenarioSimulationEventHandler, deletePopupPresenterMock);
    when(scenarioGridModelMock.isAlreadyAssignedProperty(MULTIPART_VALUE_ELEMENTS)).thenReturn(false);
    when(scenarioGridModelMock.isSelectedColumnEmpty()).thenReturn(false);
    when(scenarioGridModelMock.isSameSelectedColumnProperty(anyList(), any())).thenReturn(true);
    when(scenarioGridModelMock.isSameSelectedColumnType(anyString())).thenReturn(false);
    scenarioSimulationEventHandler.onEvent(event);
    verify(scenarioSimulationEventHandler, never()).onEvent(isA(ScenarioNotificationEvent.class));
    verify(scenarioSimulationEventHandler, never()).commonExecution(isA(SetPropertyHeaderCommand.class), anyBoolean());
    verify(preserveDeletePopupPresenterMock, never()).show(anyString(), anyString(), anyString(), anyString(), anyString(), anyString(), anyString(), anyString(), any(), any());
    verify(deletePopupPresenterMock, times(1)).show(eq(ScenarioSimulationEditorConstants.INSTANCE.deleteScenarioMainTitle()), eq(ScenarioSimulationEditorConstants.INSTANCE.deleteScenarioMainQuestion()), eq(ScenarioSimulationEditorConstants.INSTANCE.deleteScenarioText1()), eq(ScenarioSimulationEditorConstants.INSTANCE.deleteScenarioTextQuestion()), isNull(), eq(ScenarioSimulationEditorConstants.INSTANCE.deleteValues()), isA(org.uberfire.mvp.Command.class));
    // 
    reset(scenarioSimulationEventHandler, preserveDeletePopupPresenterMock, deletePopupPresenterMock);
    when(scenarioGridModelMock.isAlreadyAssignedProperty(MULTIPART_VALUE_ELEMENTS)).thenReturn(false);
    when(scenarioGridModelMock.isSelectedColumnEmpty()).thenReturn(true);
    when(scenarioGridModelMock.isSameSelectedColumnProperty(anyList(), any())).thenReturn(false);
    when(scenarioGridModelMock.isSameSelectedColumnType(anyString())).thenReturn(false);
    scenarioSimulationEventHandler.onEvent(event);
    verify(scenarioSimulationEventHandler, never()).onEvent(isA(ScenarioNotificationEvent.class));
    verify(scenarioSimulationEventHandler, times(1)).commonExecution(isA(SetPropertyHeaderCommand.class), eq(true));
    verify(preserveDeletePopupPresenterMock, never()).show(anyString(), anyString(), anyString(), anyString(), anyString(), anyString(), anyString(), anyString(), any(), any());
    verify(deletePopupPresenterMock, never()).show(anyString(), anyString(), anyString(), anyString(), anyString(), anyString(), any());
    // 
    reset(scenarioSimulationEventHandler);
    when(scenarioGridModelMock.isAlreadyAssignedProperty(MULTIPART_VALUE_ELEMENTS)).thenReturn(false);
    when(scenarioGridModelMock.isSelectedColumnEmpty()).thenReturn(false);
    when(scenarioGridModelMock.isSameSelectedColumnProperty(anyList(), any())).thenReturn(false);
    when(scenarioGridModelMock.isSameSelectedColumnType(anyString())).thenReturn(false);
    scenarioSimulationEventHandler.onEvent(event);
    verify(scenarioSimulationEventHandler, never()).onEvent(isA(ScenarioNotificationEvent.class));
    verify(scenarioSimulationEventHandler, never()).commonExecution(isA(SetPropertyHeaderCommand.class), anyBoolean());
    verify(preserveDeletePopupPresenterMock, never()).show(anyString(), anyString(), anyString(), anyString(), anyString(), anyString(), anyString(), anyString(), any(), any());
    verify(deletePopupPresenterMock, times(1)).show(eq(ScenarioSimulationEditorConstants.INSTANCE.deleteScenarioMainTitle()), eq(ScenarioSimulationEditorConstants.INSTANCE.deleteScenarioMainQuestion()), eq(ScenarioSimulationEditorConstants.INSTANCE.deleteScenarioText1()), eq(ScenarioSimulationEditorConstants.INSTANCE.deleteScenarioTextQuestion()), isNull(), eq(ScenarioSimulationEditorConstants.INSTANCE.deleteValues()), isA(org.uberfire.mvp.Command.class));
}
Also used : SetPropertyHeaderEvent(org.drools.workbench.screens.scenariosimulation.client.events.SetPropertyHeaderEvent) SetPropertyHeaderCommand(org.drools.workbench.screens.scenariosimulation.client.commands.actualcommands.SetPropertyHeaderCommand) SetInstanceHeaderCommand(org.drools.workbench.screens.scenariosimulation.client.commands.actualcommands.SetInstanceHeaderCommand) InsertColumnCommand(org.drools.workbench.screens.scenariosimulation.client.commands.actualcommands.InsertColumnCommand) RunSingleScenarioCommand(org.drools.workbench.screens.scenariosimulation.client.commands.actualcommands.RunSingleScenarioCommand) DeleteRowCommand(org.drools.workbench.screens.scenariosimulation.client.commands.actualcommands.DeleteRowCommand) AbstractScenarioSimulationCommand(org.drools.workbench.screens.scenariosimulation.client.commands.actualcommands.AbstractScenarioSimulationCommand) DuplicateRowCommand(org.drools.workbench.screens.scenariosimulation.client.commands.actualcommands.DuplicateRowCommand) UpdateSettingsDataCommand(org.drools.workbench.screens.scenariosimulation.client.commands.actualcommands.UpdateSettingsDataCommand) DuplicateInstanceCommand(org.drools.workbench.screens.scenariosimulation.client.commands.actualcommands.DuplicateInstanceCommand) PrependRowCommand(org.drools.workbench.screens.scenariosimulation.client.commands.actualcommands.PrependRowCommand) InsertRowCommand(org.drools.workbench.screens.scenariosimulation.client.commands.actualcommands.InsertRowCommand) SetGridCellValueCommand(org.drools.workbench.screens.scenariosimulation.client.commands.actualcommands.SetGridCellValueCommand) AppendColumnCommand(org.drools.workbench.screens.scenariosimulation.client.commands.actualcommands.AppendColumnCommand) PrependColumnCommand(org.drools.workbench.screens.scenariosimulation.client.commands.actualcommands.PrependColumnCommand) DeleteColumnCommand(org.drools.workbench.screens.scenariosimulation.client.commands.actualcommands.DeleteColumnCommand) DisableTestToolsCommand(org.drools.workbench.screens.scenariosimulation.client.commands.actualcommands.DisableTestToolsCommand) AppendRowCommand(org.drools.workbench.screens.scenariosimulation.client.commands.actualcommands.AppendRowCommand) ReloadTestToolsCommand(org.drools.workbench.screens.scenariosimulation.client.commands.actualcommands.ReloadTestToolsCommand) EnableTestToolsCommand(org.drools.workbench.screens.scenariosimulation.client.commands.actualcommands.EnableTestToolsCommand) SetHeaderCellValueCommand(org.drools.workbench.screens.scenariosimulation.client.commands.actualcommands.SetHeaderCellValueCommand) SetPropertyHeaderCommand(org.drools.workbench.screens.scenariosimulation.client.commands.actualcommands.SetPropertyHeaderCommand) ScenarioNotificationEvent(org.drools.workbench.screens.scenariosimulation.client.events.ScenarioNotificationEvent) Test(org.junit.Test) AbstractScenarioSimulationTest(org.drools.workbench.screens.scenariosimulation.client.AbstractScenarioSimulationTest)

Aggregations

SetPropertyHeaderEvent (org.drools.workbench.screens.scenariosimulation.client.events.SetPropertyHeaderEvent)3 AbstractScenarioSimulationTest (org.drools.workbench.screens.scenariosimulation.client.AbstractScenarioSimulationTest)2 AbstractScenarioSimulationCommand (org.drools.workbench.screens.scenariosimulation.client.commands.actualcommands.AbstractScenarioSimulationCommand)2 AppendColumnCommand (org.drools.workbench.screens.scenariosimulation.client.commands.actualcommands.AppendColumnCommand)2 AppendRowCommand (org.drools.workbench.screens.scenariosimulation.client.commands.actualcommands.AppendRowCommand)2 DeleteColumnCommand (org.drools.workbench.screens.scenariosimulation.client.commands.actualcommands.DeleteColumnCommand)2 DeleteRowCommand (org.drools.workbench.screens.scenariosimulation.client.commands.actualcommands.DeleteRowCommand)2 DisableTestToolsCommand (org.drools.workbench.screens.scenariosimulation.client.commands.actualcommands.DisableTestToolsCommand)2 DuplicateInstanceCommand (org.drools.workbench.screens.scenariosimulation.client.commands.actualcommands.DuplicateInstanceCommand)2 DuplicateRowCommand (org.drools.workbench.screens.scenariosimulation.client.commands.actualcommands.DuplicateRowCommand)2 EnableTestToolsCommand (org.drools.workbench.screens.scenariosimulation.client.commands.actualcommands.EnableTestToolsCommand)2 InsertColumnCommand (org.drools.workbench.screens.scenariosimulation.client.commands.actualcommands.InsertColumnCommand)2 InsertRowCommand (org.drools.workbench.screens.scenariosimulation.client.commands.actualcommands.InsertRowCommand)2 PrependColumnCommand (org.drools.workbench.screens.scenariosimulation.client.commands.actualcommands.PrependColumnCommand)2 PrependRowCommand (org.drools.workbench.screens.scenariosimulation.client.commands.actualcommands.PrependRowCommand)2 ReloadTestToolsCommand (org.drools.workbench.screens.scenariosimulation.client.commands.actualcommands.ReloadTestToolsCommand)2 RunSingleScenarioCommand (org.drools.workbench.screens.scenariosimulation.client.commands.actualcommands.RunSingleScenarioCommand)2 SetGridCellValueCommand (org.drools.workbench.screens.scenariosimulation.client.commands.actualcommands.SetGridCellValueCommand)2 SetHeaderCellValueCommand (org.drools.workbench.screens.scenariosimulation.client.commands.actualcommands.SetHeaderCellValueCommand)2 SetInstanceHeaderCommand (org.drools.workbench.screens.scenariosimulation.client.commands.actualcommands.SetInstanceHeaderCommand)2