- Write a “fizzBuzz” method that accepts a number as input and returns it as a String.
- For multiples of three return “Fizz” instead of the number
- For the multiples of five return “Buzz”
- For numbers that are multiples of both three and five return “FizzBuzz”.
- Run tests:
./gradlew test
- Watch tests:
watchexec -rc -w src -- './gradlew test --console rich'