rubyx/test/compiler/expressions/test_call.rb

46 lines
852 B
Ruby
Raw Normal View History

require_relative "compiler_helper"
module Virtual
2015-10-14 14:17:33 +02:00
class TestCall < MiniTest::Test
include CompilerHelper
def setup
Virtual.machine.boot
@root = :call_site
@output = Register::RegisterValue
end
def test_call_main_plain
@string_input = 'main()'
check
end
def test_call_main_int
@string_input = 'main(1)'
check
end
def test_call_self_main
@string_input = 'self.main()'
check
end
def test_call_main_string
@string_input = 'main("1")'
check
end
2015-10-14 20:34:18 +02:00
def test_call_main_op
Virtual.machine.space.get_main.ensure_local(:bar , :Integer)
@string_input = 'main( bar )'
check
end
def test_call_string_put
@string_input = '"Hello Raisa, I am salama".putstring()'
check
end
end
end