rubyx/test/register/parfait/test_attributes.rb

50 lines
1.3 KiB
Ruby
Raw Normal View History

require_relative "../helper"
class TestAttributes < MiniTest::Test
def setup
2015-10-22 17:16:29 +02:00
@mess = Register.machine.boot.space.first_message
@type = @mess.get_type
end
def test_message_get_type
assert_equal Parfait::Type , @type.class
end
def test_message_type_first
@type.object_class = :next_message
assert_equal :type , @type.instance_names.first
assert_equal :next_message , @type.object_class
end
def test_message_name_nil
last = @type.instance_names.last
assert_equal :indexed_length , last
assert_equal nil , @mess.name
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_attribute
@type.object_class = :message
assert_equal :message , @type.object_class
end
def test_type_attribute_check
@type.object_class = :message
assert_equal Parfait::Type , @type.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