rubyx/test/compiler/expressions/test_field_access.rb

47 lines
1002 B
Ruby
Raw Normal View History

require_relative "compiler_helper"
2015-10-22 17:16:29 +02:00
module Register
class TestFields < MiniTest::Test
include CompilerHelper
def setup
2015-10-22 17:16:29 +02:00
Register.machine.boot
end
def test_field_not_defined
@root = :field_access
@string_input = <<HERE
self.a
HERE
assert_raises(RuntimeError) { check }
end
def test_field
2015-10-22 17:16:29 +02:00
Register.machine.space.get_class_by_name(:Object).object_layout.add_instance_variable(:bro)
@root = :field_access
@string_input = <<HERE
self.bro
HERE
@output = Register::RegisterValue
2015-10-14 20:34:18 +02:00
check
end
def test_local
2015-10-22 17:16:29 +02:00
Register.machine.space.get_main.ensure_local(:bar , :Integer)
2015-10-14 20:34:18 +02:00
@root = :name
@string_input = 'bar '
@output = Register::RegisterValue
check
end
def test_args
2015-10-22 17:16:29 +02:00
Register.machine.space.get_main.arguments.push Parfait::Variable.new(:Integer , :bar)
2015-10-14 20:34:18 +02:00
@root = :name
@string_input = 'bar '
@output = Register::RegisterValue
check
end
end
end