|
3 years ago | |
---|---|---|
src | 3 years ago | |
README.md | 3 years ago |
Welcome to the instructions for task-2! Complete the exercises listed below and submit the results by pushing them to your repository.
Run the tests in FiboTest.java
with JUnit4
and ensure that they both fail.
Then add another test that tests that the thousandth number is correctly
generated, run the tests again, and ensure that they all still fail.
Implement the next()
method in Fibo.java
such that it returns Fibonacci
numbers in the correct sequence. Make sure that the tests pass, including the
one you added in the previous exercise.