TDD Example
Before starting TDD, we need software spec and test cases. Our goal is demonstrating software development process with a simple example:fizzbuzz problem.
Here is software spec for fizzbuzz problem:
if given number is divided up by 3, print fizz.
...
hyunwoochoi.hashnode.dev3 min read