summaryrefslogtreecommitdiffstats
path: root/test/w3c/promela
diff options
context:
space:
mode:
authorStefan Radomski <github@mintwerk.de>2017-06-02 08:30:19 (GMT)
committerStefan Radomski <github@mintwerk.de>2017-06-02 08:30:19 (GMT)
commit548ca64879a3831abe9102eedad87de0326c6099 (patch)
treec16d972dbf78055b154f5af641b961983f1191e3 /test/w3c/promela
parent0b4732178d99a9afc7086c1ede8d5882c9e4ccc3 (diff)
downloaduscxml-548ca64879a3831abe9102eedad87de0326c6099.zip
uscxml-548ca64879a3831abe9102eedad87de0326c6099.tar.gz
uscxml-548ca64879a3831abe9102eedad87de0326c6099.tar.bz2
Added new utf8 test for all datamodels
Diffstat (limited to 'test/w3c/promela')
-rw-r--r--test/w3c/promela/test-utf8.scxml22
1 files changed, 22 insertions, 0 deletions
diff --git a/test/w3c/promela/test-utf8.scxml b/test/w3c/promela/test-utf8.scxml
new file mode 100644
index 0000000..f9ce782
--- /dev/null
+++ b/test/w3c/promela/test-utf8.scxml
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- test that neither if clause executes, so that bat is the only event raised. -->
+<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="string" expr="'ü'"/>
+ <data id="Var2" type="string" expr="'ü'"/>
+ </datamodel>
+ <state id="s0">
+ <transition cond="Var1==Var2" target="pass"/>
+ <transition target="fail"/>
+ </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>