Your task is to implement the method fizzbuzz in the class FizzBuzzImpl.
The method fizzbuzz returns the value of the given value as String.
If the value is a multiple of 3 then the method returns the String "Fizz".
If the value is a multiple of 5 then the method returns the String "Buzz".
To support you with implementing the method there are unit tests in FizzBuzzImplTest. The unit tests are disabled at the start. To use them you have to enable them.
If you solved this exercise already and want a new challenge you can solve this exercise with one of the following constraints:
To perform this exercise you need a JDK 8 and Maven 3.3.x.