An open API service indexing awesome lists of open source software.

https://github.com/gsaslis/fizzbuzz-tdd

A coding kata for an introduction to TDD, using the simple FizzBuzz exercise.
https://github.com/gsaslis/fizzbuzz-tdd

coding-kata software-testing tdd tdd-kata testing testing-practices

Last synced: 11 months ago
JSON representation

A coding kata for an introduction to TDD, using the simple FizzBuzz exercise.

Awesome Lists containing this project

README

          

= TDD Kata @ Agile Greece Summit

The purpose of this code kata is an introduction to the basic flow of TDD.

To do this, we will use a slight variation of the `FizzBuzz` problem:

----
Write a "fizzBuzz" method that accepts a number as input and returns it
as a String.
BUT for multiples of three print "Fizz" instead of the number and
for the multiples of five print "Buzz".
For numbers which are multiples of both three and five print "FizzBuzz".
----

WARNING: One example solution exists in the `one_solution`
branch.