Torsten Rüger
3c762c4fe7
And the derived XXDefinitions to XXSlot Just to be more consistent And possibly free the Definition for the Language side
43 lines
1.2 KiB
Ruby
43 lines
1.2 KiB
Ruby
require_relative "helper"
|
|
|
|
module SlotMachine
|
|
class TestSameCheck < SlotMachineInstructionTest
|
|
def instruction
|
|
target = MessageSlot.new( :caller)
|
|
TruthCheck.new(target , Label.new("ok" , "target"))
|
|
end
|
|
def test_len
|
|
assert_equal 8 , all.length , all_str
|
|
end
|
|
def test_1_slot
|
|
assert_slot_to_reg risc(1) ,:r0 , 6 , :r2
|
|
end
|
|
def test_2_load
|
|
assert_load risc(2) , Parfait::FalseClass , :r3
|
|
end
|
|
def test_3_op
|
|
assert_equal Risc::OperatorInstruction , risc(3).class
|
|
assert_equal :r3 , risc(3).left.symbol
|
|
assert_equal :r2 , risc(3).right.symbol
|
|
assert_equal :- , risc(3).operator
|
|
end
|
|
def test_4_zero
|
|
assert_equal Risc::IsZero , risc(4).class
|
|
assert_label risc(4).label , "target"
|
|
end
|
|
def test_5_load
|
|
assert_load risc(5) , Parfait::NilClass , :r3
|
|
end
|
|
def test_6_op
|
|
assert_equal Risc::OperatorInstruction , risc(6).class
|
|
assert_equal :r3 , risc(6).left.symbol
|
|
assert_equal :r2 , risc(6).right.symbol
|
|
assert_equal :- , risc(6).operator
|
|
end
|
|
def test_7_zero
|
|
assert_equal Risc::IsZero , risc(7).class
|
|
assert_label risc(7).label , "target"
|
|
end
|
|
end
|
|
end
|