rubyx/test/mom/builtin/test_comparison.rb

31 lines
722 B
Ruby
Raw Normal View History

require_relative "helper"
module Mom
module Builtin
class TestIntComp1Risc < BootTest
def setup
super
@method = get_int_compiler(:<)
end
def test_compile
assert_equal Risc::MethodCompiler , @method.to_risc.class
end
def test_risc_length
2019-08-23 14:31:04 +02:00
assert_equal 23 , @method.to_risc.risc_instructions.length
end
end
class TestIntComp2Risc < BootTest
def setup
super
@method = get_int_compiler(:>=)
end
def test_compile
assert_equal Risc::MethodCompiler , @method.to_risc.class
end
def test_risc_length
2019-08-23 14:31:04 +02:00
assert_equal 22 , @method.to_risc.risc_instructions.length
end
end
end
end