use of org.kie.workbench.common.stunner.core.rule.violations.ContextOperationNotAllowedViolation in project kie-wb-common by kiegroup.
the class ConnectorParentsMatchLevel2Tests method testMoveStartNodeIntoNodeB.
@Test
@SuppressWarnings("unchecked")
public void testMoveStartNodeIntoNodeB() {
ContextualGraphCommandExecutionContext executionContext = createExecutionContext();
SetChildrenCommand setChildren = new SetChildrenCommand(graph.nodeB, graph.startNode);
CommandResult<RuleViolation> result = setChildren.allow(executionContext);
assertTrue(isError(result));
assertTrue(result.getViolations().iterator().hasNext());
RuleViolation ruleViolation = result.getViolations().iterator().next();
assertTrue(ruleViolation instanceof ContextOperationNotAllowedViolation);
}
use of org.kie.workbench.common.stunner.core.rule.violations.ContextOperationNotAllowedViolation in project kie-wb-common by kiegroup.
the class ConnectorParentsMatchLevel2Tests method testMoveStartNodeIntoNodeA.
// CONTAINMENT contexts
@Test
@SuppressWarnings("unchecked")
public void testMoveStartNodeIntoNodeA() {
ContextualGraphCommandExecutionContext executionContext = createExecutionContext();
SetChildrenCommand setChildren = new SetChildrenCommand(graph.nodeA, graph.startNode);
CommandResult<RuleViolation> result = setChildren.allow(executionContext);
assertTrue(isError(result));
assertTrue(result.getViolations().iterator().hasNext());
RuleViolation ruleViolation = result.getViolations().iterator().next();
assertTrue(ruleViolation instanceof ContextOperationNotAllowedViolation);
}
Aggregations