rubyx/test/parfait/test_attributes.rb
Torsten Rüger 0a1b05b2ee Inline arguments into message
thus removing indirection for access
does affect rather much, several commits
2019-08-22 17:55:19 +03:00

42 lines
1013 B
Ruby

require_relative "helper"
module Parfait
class TestAttributes < ParfaitTest
def setup
super
@mess = @space.get_next_for(:Message)
@type = @mess.get_type
end
def test_message_get_type
assert_equal Parfait::Type , @type.class
end
def test_message_name_nil
last = @type.names.last
assert_equal :arg6 , last , @type.names.inspect
assert_nil @mess.method
end
def test_message_next_set
@mess.next_message = :next_message
assert_equal :next_message , @mess.next_message
end
def test_message_type_set
@mess.set_type @type
assert_equal @type , @mess.get_type
end
def test_attribute_index
@mess.next_message = :message
assert_equal Parfait::Type , @mess.get_type.class
end
def test_type_type
assert_equal Parfait::Type , @type.get_type.get_type.class
end
def test_type_type_type
assert_equal Parfait::Type , @type.get_type.get_type.get_type.class
end
end
end