test501.txml 639 B

1234567891011121314151617181920212223
  1. <?xml version="1.0"?>
  2. <!-- test that the location entry for the SCXML Event I/O processor can be used as the target for an event -->
  3. <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">
  4. <datamodel>
  5. <data conf:id="1" conf:scxmlEventIOLocation=""/>
  6. </datamodel>
  7. <state id="s0">
  8. <onentry>
  9. <send conf:targetVar="1" event="foo"/>
  10. <send event="timeout" delay="2s"/>
  11. </onentry>
  12. <transition event="foo" conf:targetpass=""/>
  13. <transition event="*" conf:targetfail=""/>
  14. </state>
  15. <conf:pass/>
  16. <conf:fail/>
  17. </scxml>