from nose.tools import assert_equal class TestFib(object): def test_fib(self, func): result = [] expected = [0, 1, 1, 2, 3, 5, 8, 13, 21, 34] for i in range(len(expected)): result.append(func(i)) assert_equal(result, expected) print('Success: test_fib') def main(): test = TestFib() math = Math() test.test_fib(math.fib_recursive) test.test_fib(math.fib_dynamic) test.test_fib(math.fib_iterative) if __name__ == '__main__': main()