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.
- Host: GitHub
- URL: https://github.com/gsaslis/fizzbuzz-tdd
- Owner: gsaslis
- Created: 2017-09-30T09:55:49.000Z (over 8 years ago)
- Default Branch: main
- Last Pushed: 2020-10-13T03:54:51.000Z (over 5 years ago)
- Last Synced: 2025-03-26T20:59:34.361Z (11 months ago)
- Topics: coding-kata, software-testing, tdd, tdd-kata, testing, testing-practices
- Language: Java
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.asciidoc
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.