summaryrefslogtreecommitdiffstats
path: root/test/w3c/promela/test225.scxml
diff options
context:
space:
mode:
Diffstat (limited to 'test/w3c/promela/test225.scxml')
-rw-r--r--test/w3c/promela/test225.scxml42
1 files changed, 42 insertions, 0 deletions
diff --git a/test/w3c/promela/test225.scxml b/test/w3c/promela/test225.scxml
new file mode 100644
index 0000000..25aa2f1
--- /dev/null
+++ b/test/w3c/promela/test225.scxml
@@ -0,0 +1,42 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- we test that the automatically generated id is unique, we call invoke twice and compare the ids. -->
+<scxml xmlns="http://www.w3.org/2005/07/scxml" xmlns:conf="http://www.w3.org/2005/scxml-conformance" initial="s0" version="1.0" datamodel="promela">
+ <datamodel>
+ <data id="Var1" type="int"/>
+ <data id="Var2" type="int"/>
+ </datamodel>
+ <state id="s0">
+ <onentry>
+ <send event="timeout" delay="1s"/>
+ </onentry>
+ <invoke type="http://www.w3.org/TR/scxml/" idlocation="Var1">
+ <content>
+ <scxml initial="subFinal1" version="1.0" datamodel="promela">
+ <final id="subFinal1"/>
+ </scxml>
+ </content>
+ </invoke>
+ <invoke type="http://www.w3.org/TR/scxml/" idlocation="Var2">
+ <content>
+ <scxml initial="subFinal2" version="1.0" datamodel="promela">
+ <final id="subFinal2"/>
+ </scxml>
+ </content>
+ </invoke>
+ <transition event="*" target="s1"/>
+ </state>
+ <state id="s1">
+ <transition cond="Var1==Var2" target="fail"/>
+ <transition target="pass"/>
+ </state>
+ <final xmlns:scxml="http://www.w3.org/2005/07/scxml" id="pass">
+ <onentry>
+ <log label="Outcome" expr="'pass'"/>
+ </onentry>
+ </final>
+ <final xmlns:scxml="http://www.w3.org/2005/07/scxml" id="fail">
+ <onentry>
+ <log label="Outcome" expr="'fail'"/>
+ </onentry>
+ </final>
+</scxml>