Ejemplo n.º 1
0
def test1_getFibonacciNumber_Test():
	fib = Fibonacci()
	assert fib.getFibonacciNumber(5) == 3
Ejemplo n.º 2
0
def test3_getFibonacciNumber_Test():
	fib = Fibonacci()
	assert fib.getFibonacciNumber(10) == 34