rubyx/test/risc/test_platform.rb
Torsten Ruger 49c4d170ce make the interpreter platform
but still using the risc_instruction stream
2018-05-17 09:31:36 +03:00

17 lines
326 B
Ruby

require_relative "../helper"
module Risc
class TestPlaform < MiniTest::Test
def test_arm_factory_exists
assert Platform.for("Arm")
end
def test_inter_factory_exists
assert Platform.for("Interpreter")
end
def test_factory_raise
assert_raises{ Platform.for("NotArm")}
end
end
end