summaryrefslogtreecommitdiffstats
path: root/test/w3c/prolog/test149.scxml
blob: 9a3e107cbd01cb6eaba909ee64877b4027edde52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?xml version="1.0" encoding="UTF-8"?>
<!-- test that neither if clause executes, so that bat is the only event raised. -->
<scxml xmlns="http://www.w3.org/2005/07/scxml" xmlns:conf="http://www.w3.org/2005/scxml-conformance" initial="s0" version="1.0" datamodel="prolog">
  <datamodel>
    <data id="var1" expr="0"/>
  </datamodel>
  <state id="s0">
    <onentry>
      <if cond="false">
        <raise event="foo"/>
        <assign location="var1(Y)" expr="var1(X), Y is X + 1, retractall(var1(_))"/>
        <elseif cond="false"/>
        <raise event="bar"/>
        <assign location="var1(Y)" expr="var1(X), Y is X + 1, retractall(var1(_))"/>
      </if>
      <raise event="bat"/>
    </onentry>
    <transition event="bat" cond="X = 0, var1(X)" target="pass"/>
    <transition event="*" target="fail"/>
  </state>
  <final id="pass">
    <onentry>
      <log label="Outcome" expr="'pass'"/>
    </onentry>
  </final>
  <final id="fail">
    <onentry>
      <log label="Outcome" expr="'fail'"/>
    </onentry>
  </final>
</scxml>