use of org.yakindu.sct.model.sexec.ExecutionFlow in project statecharts by Yakindu.
the class CKeywords method setup.
@Before
public void setup() throws Exception {
ExecutionFlow flow = models.loadExecutionFlowFromResource("CKeywords.sct");
initInterpreter(flow);
}
use of org.yakindu.sct.model.sexec.ExecutionFlow in project statecharts by Yakindu.
the class ChildFirstExecutionHierarchy method setup.
@Before
public void setup() throws Exception {
ExecutionFlow flow = models.loadExecutionFlowFromResource("executionorder/ChildFirstExecutionHierarchy.sct");
initInterpreter(flow);
}
use of org.yakindu.sct.model.sexec.ExecutionFlow in project statecharts by Yakindu.
the class Choice method setup.
@Before
public void setup() throws Exception {
ExecutionFlow flow = models.loadExecutionFlowFromResource("Choice.sct");
initInterpreter(flow);
}
use of org.yakindu.sct.model.sexec.ExecutionFlow in project statecharts by Yakindu.
the class ConditionalExpression method setup.
@Before
public void setup() throws Exception {
ExecutionFlow flow = models.loadExecutionFlowFromResource("ConditionalExpressions.sct");
initInterpreter(flow);
}
use of org.yakindu.sct.model.sexec.ExecutionFlow in project statecharts by Yakindu.
the class ConstantsTests method setup.
@Before
public void setup() throws Exception {
ExecutionFlow flow = models.loadExecutionFlowFromResource("Constants.sct");
initInterpreter(flow);
}
Aggregations