FizzBuzz: "Buzz" Requirement
Write the Buzz feature of the FizzBuzz kata by following the TDD approach.
We'll cover the following...
We'll cover the following...
So far, we’ve implemented two scenarios of the FizzBuzz kata:
- The not divisible scenario.
- The Fizz feature prints
fizz
when a number divisible by 3 is provided.
Now, let’s move to the Buzz feature.
Buzz
scenario
As a reminder, the feature states that the function has to print Buzz
when a number divisible by 5
is provided to ...