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

https://github.com/queraltsm/fizzbuzz

Test Driven Development FizzBuzz in Java with JUnit
https://github.com/queraltsm/fizzbuzz

fizzbuzz junit kata maven refactoring tdd

Last synced: about 2 months ago
JSON representation

Test Driven Development FizzBuzz in Java with JUnit

Awesome Lists containing this project

README

          

Test Driven Development FizzBuzz in Java with JUnit


FizzBuzz is a program that prints the numbers but for multiples

of three print “Fizz” instead of the number and for the multiples of five print “Buzz”

and for numbers which are multiples of both three and five print “FizzBuzz “.

For example: 1,2,Fizz,4,Buzz,Fizz,7,8,Fizz,Buzz,11,Fizz,13,14,FizzBuzz,16,17...


TDD or "Test-driven development" refers to a style of programming in which three activities are tightly interwoven:

coding, testing (in the form of writing unit tests) and design (in the form of refactoring).


Assertions with JUnit 5 Assertion API