Template repo for RepoBee demo task-2
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
607 B

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