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
|
2015-10-05 23:27:13 +02:00
|
|
|
class Object
|
|
|
|
int main()
|
2015-10-07 09:04:55 +02:00
|
|
|
int n = 10
|
2015-10-05 23:27:13 +02:00
|
|
|
if( n < 12)
|
2015-10-09 17:06:00 +02:00
|
|
|
return 3
|
2015-10-05 23:27:13 +02:00
|
|
|
else
|
2015-10-09 17:06:00 +02:00
|
|
|
return 4
|
2015-10-05 23:27:13 +02:00
|
|
|
end
|
|
|
|
end
|
2015-07-18 14:28:57 +02:00
|
|
|
end
|
|
|
|
HERE
|
|
|
|
@expect = [Virtual::Return ]
|
|
|
|
check
|
|
|
|
end
|
|
|
|
|
2015-07-19 12:03:21 +02:00
|
|
|
def test_return
|
|
|
|
@string_input = <<HERE
|
2015-10-05 23:27:13 +02:00
|
|
|
class Object
|
|
|
|
int main()
|
|
|
|
return 5
|
|
|
|
end
|
|
|
|
end
|
2015-07-19 12:03:21 +02:00
|
|
|
HERE
|
|
|
|
@expect = [Virtual::Return ]
|
|
|
|
check
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2015-07-19 12:20:34 +02:00
|
|
|
def test_if_function
|
2014-05-24 09:18:54 +02:00
|
|
|
@string_input = <<HERE
|
2015-10-05 23:27:13 +02:00
|
|
|
class Object
|
|
|
|
int itest(int n)
|
|
|
|
if( n < 12)
|
|
|
|
"then".putstring()
|
|
|
|
else
|
|
|
|
"else".putstring()
|
|
|
|
end
|
2015-07-19 10:15:38 +02:00
|
|
|
end
|
2014-05-30 09:42:43 +02:00
|
|
|
|
2015-10-05 23:27:13 +02:00
|
|
|
int main()
|
|
|
|
itest(20)
|
|
|
|
end
|
|
|
|
end
|
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
|