aboutsummaryrefslogtreecommitdiffstats
path: root/Tests/ca.mcgill.ecse.dslreasoner.standalone.test/src/ca/mcgill/ecse/dslreasoner/standalone/test/TestExecutionICSE.xtend
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/ca.mcgill.ecse.dslreasoner.standalone.test/src/ca/mcgill/ecse/dslreasoner/standalone/test/TestExecutionICSE.xtend')
-rw-r--r--Tests/ca.mcgill.ecse.dslreasoner.standalone.test/src/ca/mcgill/ecse/dslreasoner/standalone/test/TestExecutionICSE.xtend22
1 files changed, 22 insertions, 0 deletions
diff --git a/Tests/ca.mcgill.ecse.dslreasoner.standalone.test/src/ca/mcgill/ecse/dslreasoner/standalone/test/TestExecutionICSE.xtend b/Tests/ca.mcgill.ecse.dslreasoner.standalone.test/src/ca/mcgill/ecse/dslreasoner/standalone/test/TestExecutionICSE.xtend
new file mode 100644
index 00000000..41bb763d
--- /dev/null
+++ b/Tests/ca.mcgill.ecse.dslreasoner.standalone.test/src/ca/mcgill/ecse/dslreasoner/standalone/test/TestExecutionICSE.xtend
@@ -0,0 +1,22 @@
1package ca.mcgill.ecse.dslreasoner.standalone.test
2
3import hu.bme.mit.inf.dslreasoner.application.execution.StandaloneScriptExecutor
4
5class TestExecutionICSE {
6 def static void main(String[] args) {
7 val fileSystemPath = "configs/fileSystem.vsconfig";
8 val ecorePath = "configs/ecore.vsconfig";
9 val yakinduPath = "configs/yakindu.vsconfig";
10 val famPath = "configs/fam.vsconfig";
11// val yakinduWithWFPath = "configs/yakinduWF.vsconfig";
12// val famWithWFPath = "configs/famWF.vsconfig";
13 val exp1 = StandaloneScriptExecutor.executeScript(fileSystemPath);
14 println(exp1)
15// val exp2 = StandaloneScriptExecutor.executeScript(ecorePath);
16// println(exp2)
17 val exp3 = StandaloneScriptExecutor.executeScript(yakinduPath);
18 println(exp3)
19 val exp4 = StandaloneScriptExecutor.executeScript(famPath);
20 println(exp4)
21 }
22} \ No newline at end of file