blob: 4136801043b97e6b3bed163753b9aae69a9f679c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?xml version="1.0"?>
<!-- test that default initial state is first in document order. If we enter s0 first we succeed, if s1, failure. -->
<scxml conf:datamodel="" version="1.0" xmlns="http://www.w3.org/2005/07/scxml" xmlns:conf="http://www.w3.org/2005/scxml-conformance">
<state id="s0">
<transition conf:targetpass=""/>
</state>
<state id="s1">
<transition conf:targetfail=""/>
</state>
<conf:pass/>
<conf:fail/>
</scxml>
|