summaryrefslogtreecommitdiffstats
path: root/test/w3c/null
diff options
context:
space:
mode:
authorStefan Radomski <sradomski@mintwerk.de>2015-12-04 08:00:18 (GMT)
committerStefan Radomski <sradomski@mintwerk.de>2015-12-04 08:00:18 (GMT)
commitb8ba0e7c31f397a66f9d509ff20a85b33619475a (patch)
tree9a5adb4f891cdc29eb80f597510e0cef8ee0a47f /test/w3c/null
parent57ba362eae6e8209cf560555fd4cc4bb76dbe2a1 (diff)
downloaduscxml-b8ba0e7c31f397a66f9d509ff20a85b33619475a.zip
uscxml-b8ba0e7c31f397a66f9d509ff20a85b33619475a.tar.gz
uscxml-b8ba0e7c31f397a66f9d509ff20a85b33619475a.tar.bz2
All changes up to my dissertation
Diffstat (limited to 'test/w3c/null')
-rw-r--r--test/w3c/null/test436.scxml23
1 files changed, 23 insertions, 0 deletions
diff --git a/test/w3c/null/test436.scxml b/test/w3c/null/test436.scxml
new file mode 100644
index 0000000..072370e
--- /dev/null
+++ b/test/w3c/null/test436.scxml
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- test that in() predicate works in null data model -->
+<scxml xmlns="http://www.w3.org/2005/07/scxml" xmlns:conf="http://www.w3.org/2005/scxml-conformance" datamodel="null" version="1.0" initial="p">
+ <parallel id="p">
+ <state id="ps0">
+ <transition cond="In('s1')" target="fail"/>
+ <transition cond="In('ps1')" target="pass"/>
+ <transition target="fail"/>
+ </state>
+ <state id="ps1"/>
+ </parallel>
+ <state id="s1"/>
+ <final id="pass">
+ <onentry>
+ <log label="Outcome" expr="'pass'"/>
+ </onentry>
+ </final>
+ <final id="fail">
+ <onentry>
+ <log label="Outcome" expr="'fail'"/>
+ </onentry>
+ </final>
+</scxml>