2014-05-24 09:18:54 +02:00
|
|
|
require_relative 'helper'
|
|
|
|
|
|
|
|
class TestIf < MiniTest::Test
|
|
|
|
include Fragments
|
|
|
|
|
2015-07-18 14:28:57 +02:00
|
|
|
def test_if_basic
|
|
|
|
@string_input = <<HERE
|
|
|
|
if( n < 12)
|
|
|
|
3
|
|
|
|
else
|
|
|
|
4
|
|
|
|
end
|
|
|
|
HERE
|
|
|
|
@expect = [Virtual::Return ]
|
|
|
|
check
|
|
|
|
end
|
|
|
|
|
|
|
|
def ttest_if_function
|
2014-05-24 09:18:54 +02:00
|
|
|
@string_input = <<HERE
|
2014-05-30 09:42:43 +02:00
|
|
|
def itest(n)
|
2015-07-19 10:15:38 +02:00
|
|
|
if( n < 12)
|
|
|
|
"then".putstring()
|
|
|
|
else
|
|
|
|
"else".putstring()
|
|
|
|
end
|
2014-05-30 09:42:43 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
itest(20)
|
2014-05-24 09:18:54 +02:00
|
|
|
HERE
|
2015-07-18 14:28:57 +02:00
|
|
|
@expect = [Virtual::Return ]
|
|
|
|
check
|
2014-05-24 09:18:54 +02:00
|
|
|
end
|
|
|
|
end
|