test330.txml 757 B

123456789101112131415161718192021222324252627
  1. <?xml version="1.0"?>
  2. <!-- check that the required fields are present in both internal and external events -->
  3. <scxml version="1.0" initial="s0" conf:datamodel="" name="machineName" xmlns="http://www.w3.org/2005/07/scxml" xmlns:conf="http://www.w3.org/2005/scxml-conformance">
  4. <state id="s0">
  5. <onentry>
  6. <raise event="foo"/>
  7. </onentry>
  8. <transition event="foo" conf:eventFieldsAreBound="" target="s1"/>
  9. <transition event="*" conf:targetfail=""/>
  10. </state>
  11. <state id="s1">
  12. <onentry>
  13. <send event="foo"/>
  14. </onentry>
  15. <transition event="foo" conf:eventFieldsAreBound="" conf:targetpass=""/>
  16. <transition event="*" conf:targetfail=""/>
  17. </state>
  18. <conf:pass/>
  19. <conf:fail/>
  20. </scxml>