use of org.yakindu.sct.model.stext.test.util.StextTestFactory._createInternalScope in project statecharts by Yakindu.
the class ModelSequencertDeclarationsTest method testMapEmptyInternalScope.
/**
* An InternalScope must be mapped to an InternalScope.
*/
@Test
public void testMapEmptyInternalScope() {
InternalScope scope = _createInternalScope(null);
Scope _scope = structureMapping.mapScope(scope);
assertTrue(_scope instanceof InternalScope);
}
Aggregations