summaryrefslogtreecommitdiffstats
path: root/test/scxml-test-framework/test/hierarchy/hier1.scxml
diff options
context:
space:
mode:
Diffstat (limited to 'test/scxml-test-framework/test/hierarchy/hier1.scxml')
-rw-r--r--test/scxml-test-framework/test/hierarchy/hier1.scxml29
1 files changed, 12 insertions, 17 deletions
diff --git a/test/scxml-test-framework/test/hierarchy/hier1.scxml b/test/scxml-test-framework/test/hierarchy/hier1.scxml
index 654994d..c4d76ee 100644
--- a/test/scxml-test-framework/test/hierarchy/hier1.scxml
+++ b/test/scxml-test-framework/test/hierarchy/hier1.scxml
@@ -15,27 +15,22 @@
limitations under the License.
-->
<scxml
- xmlns="http://www.w3.org/2005/07/scxml"
- version="1.0"
- profile="ecmascript"
- id="root">
+ datamodel="ecmascript"
+ xmlns="http://www.w3.org/2005/07/scxml"
+ version="1.0">
- <initial id="intitial1">
- <transition target="a1"/>
- </initial>
+ <state id="a">
+ <state id="a1">
+ <transition target="a2" event="t"/>
+ </state>
- <state id="a">
- <state id="a1">
- <transition target="a2" event="t"/>
- </state>
+ <state id="a2">
+ </state>
- <state id="a2">
- </state>
+ <transition target="b" event="t"/>
+ </state>
- <transition target="b" event="t"/>
- </state>
-
- <state id="b"/>
+ <state id="b"/>
</scxml>