test179.txml 533 B

123456789101112131415161718192021
  1. <?xml version="1.0"?>
  2. <!-- we test that <content> can be used to populate body of a message -->
  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. <state id="s0">
  5. <onentry>
  6. <send event="event1">
  7. <content>123</content>
  8. </send>
  9. </onentry>
  10. <transition event="event1" conf:eventdataVal="123" conf:targetpass=""/>
  11. <transition event="*" conf:targetfail=""/>
  12. </state>
  13. <conf:pass/>
  14. <conf:fail/>
  15. </scxml>