rubyx/test/compiler/statements/test_if.rb

63 lines
1.2 KiB
Ruby
Raw Normal View History

2015-10-15 08:47:11 +02:00
require_relative 'helper'
module Register
2015-10-15 08:47:11 +02:00
class TestIfStatement < MiniTest::Test
include Statements
def test_if_basic
@string_input = <<HERE
class Object
int main()
2015-10-19 15:22:24 +02:00
if_plus( 10 - 12)
2015-10-15 08:47:11 +02:00
return 3
else
return 4
end
end
end
HERE
@expect = [[SaveReturn,LoadConstant,LoadConstant,
2015-10-19 15:22:24 +02:00
OperatorInstruction,IsPlus] ,
[LoadConstant,Branch] ,[LoadConstant] ,[] ,
[RegisterTransfer,GetSlot,FunctionReturn]]
2015-10-15 08:47:11 +02:00
check
end
2015-10-19 15:22:24 +02:00
def test_if_small_minus
2015-10-15 08:47:11 +02:00
@string_input = <<HERE
class Object
int main()
2015-10-19 15:22:24 +02:00
if_minus( 10 - 12)
2015-10-15 08:47:11 +02:00
return 3
end
end
end
HERE
@expect = [[SaveReturn,LoadConstant,LoadConstant,
2015-10-19 15:22:24 +02:00
OperatorInstruction,IsMinus] ,
[Branch] ,[LoadConstant] ,[] ,
[RegisterTransfer,GetSlot,FunctionReturn]]
2015-10-15 08:47:11 +02:00
check
end
2015-10-19 15:22:24 +02:00
def test_if_small_zero
2015-10-15 08:47:11 +02:00
@string_input = <<HERE
class Object
int main()
2015-10-19 15:22:24 +02:00
if_zero( 10 - 12)
return 3
end
2015-10-15 08:47:11 +02:00
end
end
HERE
2015-10-19 15:22:24 +02:00
@expect = [[SaveReturn,LoadConstant,LoadConstant,
OperatorInstruction,IsZero] ,
[Branch] ,[LoadConstant] ,[] ,
[RegisterTransfer,GetSlot,FunctionReturn]]
2015-10-15 08:47:11 +02:00
check
end
end
end