summaryrefslogtreecommitdiffstats
path: root/test/w3c/xpath/test307.scxml
diff options
context:
space:
mode:
authorStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2014-08-11 14:12:28 (GMT)
committerStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2014-08-11 14:12:28 (GMT)
commitc30b602cdb5ede809b960e35fc7e702b7f1f76e2 (patch)
treea7935d13b35abde551d7b06836b4bc617fc5274e /test/w3c/xpath/test307.scxml
parentb95a9c2d23c4bfba84dfac8683c47153d598e09f (diff)
downloaduscxml-c30b602cdb5ede809b960e35fc7e702b7f1f76e2.zip
uscxml-c30b602cdb5ede809b960e35fc7e702b7f1f76e2.tar.gz
uscxml-c30b602cdb5ede809b960e35fc7e702b7f1f76e2.tar.bz2
Reformatted w3c tests with xmllint
Diffstat (limited to 'test/w3c/xpath/test307.scxml')
-rw-r--r--test/w3c/xpath/test307.scxml71
1 files changed, 32 insertions, 39 deletions
diff --git a/test/w3c/xpath/test307.scxml b/test/w3c/xpath/test307.scxml
index 369b6c8..29fde66 100644
--- a/test/w3c/xpath/test307.scxml
+++ b/test/w3c/xpath/test307.scxml
@@ -1,42 +1,35 @@
-<?xml version="1.0" encoding="UTF-8"?><scxml xmlns="http://www.w3.org/2005/07/scxml" xmlns:conf="http://www.w3.org/2005/scxml-conformance" version="1.0" initial="s0" binding="late">
-
-<!-- with binding=late, in s0 we access a variable that isn't created until we get to s1. Then in s1
+<?xml version="1.0" encoding="UTF-8"?>
+<scxml xmlns="http://www.w3.org/2005/07/scxml" xmlns:conf="http://www.w3.org/2005/scxml-conformance" version="1.0" initial="s0" binding="late">
+ <!-- with binding=late, in s0 we access a variable that isn't created until we get to s1. Then in s1
we access a non-existent substructure of a variable. We use log tags to report the values that both operations
yield, and whether there are errors. This is a manual test, since the tester must report whether the output
is the same in the two cases -->
-
-<state id="s0">
- <onentry>
- <log label="entering s0 value of Var 1 is: " expr="$Var1/text()"/>
- <raise event="foo"/>
- </onentry>
- <transition event="error" target="s1">
- <log label="error in state s0" expr="_event"/>
- </transition>
- <transition event="foo" target="s1">
- <log label="no error in s0" expr=""/>
- </transition>
- </state>
-
-<state id="s1">
- <datamodel>
- <data id="Var1" expr="1"/>
- </datamodel>
-
- <onentry>
- <log label="entering s1, value of non-existent substructure of Var 1 is: " expr="$Var1.bar"/>
- <raise event="bar"/>
- </onentry>
-
- <transition event="error" target="final">
- <log label="error in state s1" expr="_event"/>
- </transition>
- <transition event="bar" target="final">
- <log label="No error in s1" expr=""/>
- </transition>
-
-</state>
-
-<final id="final"/>
-
-</scxml> \ No newline at end of file
+ <state id="s0">
+ <onentry>
+ <log label="entering s0 value of Var 1 is: " expr="$Var1/text()"/>
+ <raise event="foo"/>
+ </onentry>
+ <transition event="error" target="s1">
+ <log label="error in state s0" expr="_event"/>
+ </transition>
+ <transition event="foo" target="s1">
+ <log label="no error in s0" expr=""/>
+ </transition>
+ </state>
+ <state id="s1">
+ <datamodel>
+ <data id="Var1" expr="1"/>
+ </datamodel>
+ <onentry>
+ <log label="entering s1, value of non-existent substructure of Var 1 is: " expr="$Var1.bar"/>
+ <raise event="bar"/>
+ </onentry>
+ <transition event="error" target="final">
+ <log label="error in state s1" expr="_event"/>
+ </transition>
+ <transition event="bar" target="final">
+ <log label="No error in s1" expr=""/>
+ </transition>
+ </state>
+ <final id="final"/>
+</scxml>