rubyx/test/slot_machine/test_slotted_constant.rb

42 lines
1.1 KiB
Ruby
Raw Normal View History

require_relative "helper"
module SlotMachine
class TestSlotConstant < MiniTest::Test
2020-03-12 21:20:38 +01:00
include Risc::HasCompiler
def setup
2019-02-08 22:03:23 +01:00
Parfait.boot!(Parfait.default_test_options)
2020-03-12 21:20:38 +01:00
@compiler = Risc.test_compiler
2020-02-17 08:45:54 +01:00
@slotted = Slotted.for(StringConstant.new("hi") , nil)
2020-03-12 21:20:38 +01:00
register = @slotted.to_register(@compiler , InstructionMock.new)
end
def test_load
2020-03-12 21:20:38 +01:00
assert_load 1 , Parfait::Word , "id_"
end
def test_def_const
2020-03-12 21:20:38 +01:00
assert_equal "hi" , risc(1).constant.to_string
end
end
class TestSlotConstantType < MiniTest::Test
2020-03-12 21:20:38 +01:00
include Risc::HasCompiler
def setup
Parfait.boot!(Parfait.default_test_options)
2020-03-12 21:20:38 +01:00
@compiler = Risc.test_compiler
2020-02-17 08:27:42 +01:00
@slotted = Slotted.for(StringConstant.new("hi") , [:type])
2020-03-12 21:20:38 +01:00
register = @slotted.to_register(@compiler , InstructionMock.new)
end
def test_load
2020-03-12 21:20:38 +01:00
assert_load 1 , Parfait::Word , "id_"
end
def test_def_const
2020-03-12 21:20:38 +01:00
assert_equal "hi" , risc(1).constant.to_string
end
def test_to_s
2020-02-17 08:27:42 +01:00
assert_equal "StringConstant.type" , @slotted.to_s
end
def test_def_register2
2020-03-12 21:20:38 +01:00
assert_slot_to_reg 2 , "id_" , 0 , "id_.0"
end
end
end