2014-05-28 14:03:54 +02:00
|
|
|
require_relative 'helper'
|
|
|
|
|
|
|
|
class TestWhileFragment < MiniTest::Test
|
|
|
|
include Fragments
|
|
|
|
|
2015-11-06 13:24:57 +01:00
|
|
|
def fibo num
|
2014-05-28 14:03:54 +02:00
|
|
|
@string_input = <<HERE
|
2015-10-05 23:27:13 +02:00
|
|
|
class Object
|
|
|
|
int fibonaccit(int n)
|
2015-10-27 10:00:48 +01:00
|
|
|
int a = 0
|
|
|
|
int b = 1
|
2015-11-05 12:37:08 +01:00
|
|
|
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
|
2015-10-05 23:27:13 +02:00
|
|
|
end
|
2014-06-07 22:22:32 +02:00
|
|
|
|
2015-10-05 23:27:13 +02:00
|
|
|
int main()
|
2015-11-06 13:24:57 +01:00
|
|
|
return fibonaccit( 100 )
|
2015-10-05 23:27:13 +02:00
|
|
|
end
|
|
|
|
end
|
2014-05-28 14:03:54 +02:00
|
|
|
HERE
|
2015-11-06 13:24:57 +01:00
|
|
|
@string_input.sub!( "100" , num.to_s )
|
|
|
|
end
|
|
|
|
|
2015-11-08 14:15:55 +01:00
|
|
|
def test_while_fibo94
|
|
|
|
fibo 91
|
|
|
|
@length = 2138
|
|
|
|
# this is not the correct fibo, just what comes from wrapping (smaller than below)
|
|
|
|
check_return 48360591948142405
|
2015-11-06 13:24:57 +01:00
|
|
|
end
|
|
|
|
|
2015-11-08 14:15:55 +01:00
|
|
|
def test_while_fibo90
|
|
|
|
fibo 90
|
|
|
|
@length = 2115
|
|
|
|
check_return 2880067194370816120
|
2014-05-28 14:03:54 +02:00
|
|
|
end
|
2014-06-05 15:27:25 +02:00
|
|
|
|
2014-05-28 14:03:54 +02:00
|
|
|
end
|