rubyx/test/register/test_positioned.rb

43 lines
1.0 KiB
Ruby
Raw Normal View History

2015-07-19 09:54:36 +02:00
require_relative "../helper"
class TestPositioned < MiniTest::Test
2015-10-16 16:13:08 +02:00
def setup
2015-10-22 17:16:29 +02:00
Register.machine.boot unless Register.machine.booted
2015-10-16 16:13:08 +02:00
end
2015-07-19 09:54:36 +02:00
def test_list1
list = Parfait.new_list([1])
assert_equal 32 , list.padded_length
2015-07-19 09:54:36 +02:00
end
def test_list5
list = Parfait.new_list([1,2,3,4,5])
assert_equal 32 , list.padded_length
2015-07-19 09:54:36 +02:00
end
def test_type
2016-12-30 17:39:49 +01:00
type = Parfait::Type.for_hash Parfait.object_space.get_class_by_name(:Object) , {}
type.set_type( type )
assert_equal 32 , type.padded_length
2015-07-19 09:54:36 +02:00
end
2015-11-03 15:21:50 +01:00
def test_word
word = Parfait::Word.new(12)
assert_equal 32 , word.padded_length
2015-11-03 15:21:50 +01:00
end
2016-12-15 21:15:20 +01:00
def test_raises_no_init
assert_raises { Positioned.position(self)}
2016-12-15 21:15:20 +01:00
end
def test_raises_set_nil
assert_raises { Positioned.set_position(self,nil)}
2016-12-15 21:15:20 +01:00
end
def test_raises_reset_far
assert_raises do
test = TestPosition.new
2016-12-28 20:40:06 +01:00
test.set_position 0
test.set_position 12000
2016-12-15 21:15:20 +01:00
end
end
2017-01-01 20:52:35 +01:00
def test_pos_arm
mov = Arm::ArmMachine.mov :r1, 128
mov.set_position(0)
end
2015-07-19 09:54:36 +02:00
end