1234567891011121314151617181920212223242526 |
- <?xml version="1.0"?>
- <!-- we test that <send> respects the delay specification. If it does, event1 arrives before event2
- and we pass. Otherwise we fail -->
- <scxml initial="s0" version="1.0" conf:datamodel="" xmlns="http://www.w3.org/2005/07/scxml" xmlns:conf="http://www.w3.org/2005/scxml-conformance">
-
- <state id="s0">
- <onentry>
- <send event="event2" conf:delay="1"/>
- <send event="event1"/>
- </onentry>
-
- <transition event="event1" target="s1"/>
- <transition event="*" conf:targetfail=""/>
- </state>
- <state id="s1">
- <transition event="event2" conf:targetpass=""/>
- <transition event="*" conf:targetfail=""/>
- </state>
-
- <conf:pass/>
- <conf:fail/>
- </scxml>
|