2018-03-16 14:35:22 +01:00
|
|
|
|
|
|
|
require_relative "helper"
|
|
|
|
|
2019-10-03 23:36:49 +02:00
|
|
|
module Sol
|
2018-03-16 14:35:22 +01:00
|
|
|
class TestIfNoElse < MiniTest::Test
|
2019-10-03 23:36:49 +02:00
|
|
|
include SolCompile
|
2018-03-16 14:35:22 +01:00
|
|
|
|
|
|
|
def setup
|
2019-09-12 12:10:31 +02:00
|
|
|
@compiler = compile_main( "if(@a) ; @a = 5 ; end;return")
|
2019-10-03 19:55:41 +02:00
|
|
|
@ins = @compiler.slot_instructions.next
|
2018-03-16 14:35:22 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_condition_compiles_to_check
|
|
|
|
assert_equal TruthCheck , @ins.class , @ins
|
|
|
|
end
|
|
|
|
def test_condition_is_slot
|
2020-02-10 12:12:39 +01:00
|
|
|
assert_equal MessageDefinition , @ins.condition.class , @ins
|
2018-03-16 14:35:22 +01:00
|
|
|
end
|
|
|
|
def test_label_after_check
|
|
|
|
assert_equal Label , @ins.next.class , @ins
|
|
|
|
end
|
|
|
|
def test_label_last
|
|
|
|
assert_equal Label , @ins.last.class , @ins
|
|
|
|
end
|
|
|
|
def test_array
|
2019-08-17 22:29:42 +02:00
|
|
|
check_array [TruthCheck, Label, SlotLoad, Label, SlotLoad, ReturnJump,
|
|
|
|
Label ,ReturnSequence, Label], @ins
|
2018-03-16 14:35:22 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|