123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291 |
- <xml xmlns="http://www.w3.org/1999/xhtml">
- <block type="unittest_main" x="33" y="140">
- <statement name="DO">
- <block type="procedures_callnoreturn">
- <mutation name="test repeat"></mutation>
- <next>
- <block type="procedures_callnoreturn">
- <mutation name="test while"></mutation>
- <next>
- <block type="procedures_callnoreturn">
- <mutation name="test foreach"></mutation>
- </block>
- </next>
- </block>
- </next>
- </block>
- </statement>
- </block>
- <block type="procedures_defnoreturn" x="31" y="296">
- <mutation></mutation>
- <field name="NAME">test foreach</field>
- <statement name="STACK">
- <block type="variables_set" inline="false">
- <field name="VAR">log</field>
- <value name="VALUE">
- <block type="text">
- <field name="TEXT"></field>
- </block>
- </value>
- <next>
- <block type="controls_forEach" inline="false">
- <field name="VAR">x</field>
- <value name="LIST">
- <block type="lists_create_with" inline="false">
- <mutation items="3"></mutation>
- <value name="ADD0">
- <block type="text">
- <field name="TEXT">a</field>
- </block>
- </value>
- <value name="ADD1">
- <block type="text">
- <field name="TEXT">b</field>
- </block>
- </value>
- <value name="ADD2">
- <block type="text">
- <field name="TEXT">c</field>
- </block>
- </value>
- </block>
- </value>
- <statement name="DO">
- <block type="text_append" inline="false">
- <field name="VAR">log</field>
- <value name="TEXT">
- <block type="variables_get">
- <field name="VAR">x</field>
- </block>
- </value>
- </block>
- </statement>
- <next>
- <block type="unittest_assertequals" inline="false">
- <value name="MESSAGE">
- <block type="text">
- <field name="TEXT">for loop</field>
- </block>
- </value>
- <value name="ACTUAL">
- <block type="variables_get">
- <field name="VAR">log</field>
- </block>
- </value>
- <value name="EXPECTED">
- <block type="text">
- <field name="TEXT">abc</field>
- </block>
- </value>
- </block>
- </next>
- </block>
- </next>
- </block>
- </statement>
- </block>
- <block type="procedures_defnoreturn" x="30" y="624">
- <mutation></mutation>
- <field name="NAME">test while</field>
- <statement name="STACK">
- <block type="controls_whileUntil" inline="false">
- <field name="MODE">WHILE</field>
- <value name="BOOL">
- <block type="logic_boolean">
- <field name="BOOL">FALSE</field>
- </block>
- </value>
- <statement name="DO">
- <block type="unittest_fail">
- <field name="MESSAGE">while 0</field>
- </block>
- </statement>
- <next>
- <block type="controls_whileUntil" inline="false">
- <field name="MODE">UNTIL</field>
- <value name="BOOL">
- <block type="logic_boolean">
- <field name="BOOL">TRUE</field>
- </block>
- </value>
- <statement name="DO">
- <block type="unittest_fail">
- <field name="MESSAGE">until 0</field>
- </block>
- </statement>
- <next>
- <block type="variables_set" inline="false">
- <field name="VAR">count</field>
- <value name="VALUE">
- <block type="math_number">
- <field name="NUM">1</field>
- </block>
- </value>
- <next>
- <block type="controls_whileUntil" inline="false">
- <field name="MODE">WHILE</field>
- <value name="BOOL">
- <block type="logic_compare">
- <field name="OP">NEQ</field>
- <value name="A">
- <block type="variables_get">
- <field name="VAR">count</field>
- </block>
- </value>
- <value name="B">
- <block type="math_number">
- <field name="NUM">10</field>
- </block>
- </value>
- </block>
- </value>
- <statement name="DO">
- <block type="math_change" inline="false">
- <field name="VAR">count</field>
- <value name="DELTA">
- <block type="math_number">
- <field name="NUM">1</field>
- </block>
- </value>
- </block>
- </statement>
- <next>
- <block type="unittest_assertequals" inline="false">
- <value name="MESSAGE">
- <block type="text">
- <field name="TEXT">while 10</field>
- </block>
- </value>
- <value name="ACTUAL">
- <block type="variables_get">
- <field name="VAR">count</field>
- </block>
- </value>
- <value name="EXPECTED">
- <block type="math_number">
- <field name="NUM">10</field>
- </block>
- </value>
- <next>
- <block type="variables_set" inline="false">
- <field name="VAR">count</field>
- <value name="VALUE">
- <block type="math_number">
- <field name="NUM">1</field>
- </block>
- </value>
- <next>
- <block type="controls_whileUntil" inline="false">
- <field name="MODE">UNTIL</field>
- <value name="BOOL">
- <block type="logic_compare">
- <field name="OP">EQ</field>
- <value name="A">
- <block type="variables_get">
- <field name="VAR">count</field>
- </block>
- </value>
- <value name="B">
- <block type="math_number">
- <field name="NUM">10</field>
- </block>
- </value>
- </block>
- </value>
- <statement name="DO">
- <block type="math_change" inline="false">
- <field name="VAR">count</field>
- <value name="DELTA">
- <block type="math_number">
- <field name="NUM">1</field>
- </block>
- </value>
- </block>
- </statement>
- <next>
- <block type="unittest_assertequals" inline="false">
- <value name="MESSAGE">
- <block type="text">
- <field name="TEXT">until 10</field>
- </block>
- </value>
- <value name="ACTUAL">
- <block type="variables_get">
- <field name="VAR">count</field>
- </block>
- </value>
- <value name="EXPECTED">
- <block type="math_number">
- <field name="NUM">10</field>
- </block>
- </value>
- </block>
- </next>
- </block>
- </next>
- </block>
- </next>
- </block>
- </next>
- </block>
- </next>
- </block>
- </next>
- </block>
- </next>
- </block>
- </statement>
- </block>
- <block type="procedures_defnoreturn" x="397" y="628">
- <mutation></mutation>
- <field name="NAME">test repeat</field>
- <statement name="STACK">
- <block type="variables_set" inline="false">
- <field name="VAR">count</field>
- <value name="VALUE">
- <block type="math_number">
- <field name="NUM">0</field>
- </block>
- </value>
- <next>
- <block type="controls_repeat_ext" inline="true">
- <value name="TIMES">
- <block type="math_number">
- <field name="NUM">10</field>
- </block>
- </value>
- <statement name="DO">
- <block type="math_change" inline="false">
- <field name="VAR">count</field>
- <value name="DELTA">
- <block type="math_number">
- <field name="NUM">1</field>
- </block>
- </value>
- </block>
- </statement>
- <next>
- <block type="unittest_assertequals" inline="false">
- <value name="MESSAGE">
- <block type="text">
- <field name="TEXT">repeat 10</field>
- </block>
- </value>
- <value name="ACTUAL">
- <block type="variables_get">
- <field name="VAR">count</field>
- </block>
- </value>
- <value name="EXPECTED">
- <block type="math_number">
- <field name="NUM">10</field>
- </block>
- </value>
- </block>
- </next>
- </block>
- </next>
- </block>
- </statement>
- </block>
- </xml>
|