diff options
author | Stefan Radomski <github@mintwerk.de> | 2017-06-05 13:02:25 (GMT) |
---|---|---|
committer | Stefan Radomski <github@mintwerk.de> | 2017-06-05 13:02:25 (GMT) |
commit | c2624fcf87cac6b56c10771cdd88c3aaecbf2488 (patch) | |
tree | 7c2e203c7997bc93a4e46a59d025b766f98b58bb /test/w3c/c89/test-enc-UTF8.scxml | |
parent | d1404b669a00a6cff2ac35f09d0222c1d9ab4bff (diff) | |
download | uscxml-c2624fcf87cac6b56c10771cdd88c3aaecbf2488.zip uscxml-c2624fcf87cac6b56c10771cdd88c3aaecbf2488.tar.gz uscxml-c2624fcf87cac6b56c10771cdd88c3aaecbf2488.tar.bz2 |
Added more encoding tests
Diffstat (limited to 'test/w3c/c89/test-enc-UTF8.scxml')
-rw-r--r-- | test/w3c/c89/test-enc-UTF8.scxml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/test/w3c/c89/test-enc-UTF8.scxml b/test/w3c/c89/test-enc-UTF8.scxml new file mode 100644 index 0000000..b576365 --- /dev/null +++ b/test/w3c/c89/test-enc-UTF8.scxml @@ -0,0 +1,26 @@ +<?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="c89"> + <datamodel> + <data id="Var1" expr="&ü&"/> + <data id="Var2" expr="&ü&"/> + </datamodel> + <state id="s0"> + <transition cond="Var1===Var2" target="s1"/> + <transition target="fail"/> + </state> + <state id="s1"> + <transition cond="Var1=='ü'" target="pass"/> + <transition target="fail"/> + </state> + <final id="pass"> + <onentry> + <log label="Outcome" expr="&pass&"/> + </onentry> + </final> + <final id="fail"> + <onentry> + <log label="Outcome" expr="&pass&"/> + </onentry> + </final> +</scxml> |