rubyx/test/compiler/statements/test_if.rb

60 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 = [Label, SaveReturn,LoadConstant,LoadConstant, OperatorInstruction,IsPlus ,
LoadConstant,Branch , Label , LoadConstant ,
Label,Label,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 = [Label, SaveReturn,LoadConstant,LoadConstant, OperatorInstruction,IsMinus ,
Branch ,Label , LoadConstant ,
Label,Label , 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
@expect = [Label, SaveReturn,LoadConstant,LoadConstant,OperatorInstruction,IsZero ,
Branch , Label , LoadConstant ,
Label,Label, RegisterTransfer,GetSlot,FunctionReturn]
2015-10-15 08:47:11 +02:00
check
end
end
end