rubyx/test/vool/to_mom/send/test_send_simple_args.rb

27 lines
685 B
Ruby
Raw Normal View History

2017-04-16 10:39:21 +02:00
require_relative "../helper"
2017-09-11 20:30:28 +02:00
require_relative "simple_send_harness"
2017-04-16 10:39:21 +02:00
module Vool
class TestSendSimpleArgsMom < MiniTest::Test
include MomCompile
2017-09-11 20:30:28 +02:00
include SimpleSendHarness
2017-04-16 10:39:21 +02:00
def setup
Risc.machine.boot
@stats = compile_first_method( "5.mod4(1,2)").first
end
2017-09-11 20:30:28 +02:00
def receiver
[IntegerStatement , 5]
2017-04-16 10:39:21 +02:00
end
def test_args_two_move
2017-09-11 20:30:28 +02:00
assert_equal :next_message, @stats[1].arguments[1].left[1]
assert_equal :arguments, @stats[1].arguments[1].left[2]
2017-04-16 10:39:21 +02:00
end
2017-09-11 20:30:28 +02:00
def test_args_two_str
assert_equal IntegerStatement, @stats[1].arguments[1].right.class
assert_equal 2, @stats[1].arguments[1].right.value
2017-04-16 10:39:21 +02:00
end
end
end