First page Back Continue Last page Overview Graphics

Running the Test Cases

$ python3 fibonacci_unittest.py

.

------------------------------------------------

Ran 1 test in 0.000s

OK

Before we start fibonacci_unittest.py once more, we create an error in the previous example:

We change

a, b = 0, 1

to

a, b = 1, 1