rubyx/test/compiler/fragments/test_while_fibo.rb

33 lines
471 B
Ruby
Raw Normal View History

require_relative 'helper'
class TestWhileFragment < MiniTest::Test
include Fragments
def test_while_fibo
@string_input = <<HERE
class Object
int fibonaccit(int n)
2015-10-27 10:00:48 +01:00
int a = 0
int b = 1
n = n - 1
2015-10-27 10:00:48 +01:00
while_plus( n )
int tmp = a
a = b
b = tmp + b
n = n - 1
end
b.putint()
return b
end
2014-06-07 22:22:32 +02:00
int main()
return fibonaccit( 10 )
end
end
HERE
@length = 278
2015-11-05 16:00:41 +01:00
check_return 55
end
2014-06-05 15:27:25 +02:00
end