summaryrefslogtreecommitdiffstats
path: root/test/w3c/promela/test158.scxml
diff options
context:
space:
mode:
Diffstat (limited to 'test/w3c/promela/test158.scxml')
-rw-r--r--test/w3c/promela/test158.scxml29
1 files changed, 0 insertions, 29 deletions
diff --git a/test/w3c/promela/test158.scxml b/test/w3c/promela/test158.scxml
deleted file mode 100644
index d921652..0000000
--- a/test/w3c/promela/test158.scxml
+++ /dev/null
@@ -1,29 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!-- test that executable content executes in document order. if event1 occurs then event2, succeed, otherwise fail -->
-<scxml xmlns="http://www.w3.org/2005/07/scxml" xmlns:conf="http://www.w3.org/2005/scxml-conformance" initial="s0" datamodel="promela" version="1.0">
- <datamodel>
- <data id="Var1" type="int" expr="0"/>
- </datamodel>
- <state id="s0">
- <onentry>
- <raise event="event1"/>
- <raise event="event2"/>
- </onentry>
- <transition event="event1" target="s1"/>
- <transition event="*" target="fail"/>
- </state>
- <state id="s1">
- <transition event="event2" target="pass"/>
- <transition event="*" target="fail"/>
- </state>
- <final xmlns:scxml="http://www.w3.org/2005/07/scxml" id="pass">
- <onentry>
- <log label="Outcome" expr="'pass'"/>
- </onentry>
- </final>
- <final xmlns:scxml="http://www.w3.org/2005/07/scxml" id="fail">
- <onentry>
- <log label="Outcome" expr="'fail'"/>
- </onentry>
- </final>
-</scxml>