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
- Host: GitHub
- URL: https://github.com/queraltsm/fizzbuzz
- Owner: queraltsm
- Created: 2018-09-11T11:02:18.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-09-11T14:37:30.000Z (almost 8 years ago)
- Last Synced: 2025-03-23T13:33:21.630Z (over 1 year ago)
- Topics: fizzbuzz, junit, kata, maven, refactoring, tdd
- Language: Java
- Homepage:
- Size: 183 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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