https://github.com/daejoon/tdd-practice
https://github.com/daejoon/tdd-practice
practice tdd
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/daejoon/tdd-practice
- Owner: daejoon
- Created: 2018-08-06T08:22:51.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2024-02-03T15:13:25.000Z (over 2 years ago)
- Last Synced: 2025-07-23T06:46:06.708Z (about 1 year ago)
- Topics: practice, tdd
- Language: Java
- Homepage: https://github.com/daejoon/tdd-practice
- Size: 165 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# TDD Practice
TDD 연습을 위한 Repository
## 실행방법
```
$ ./gradlew clean test
```
## TDD 주기
1. 작은 테스트를 하나 추가한다.
1. 모든 테스트를 실행해서 테스트가 실패하는 것을 확인한다.
1. 조금 수정한다.
1. 모든 테스트를 실행해서 테스트가 성공하는 것을 확인한다.
1. 중복을 제거하기 위해 **리팩토링**을 한다.
## TDD List
- [Bank Business](bank-business/README.md)
- [Baseball Game](baseball-game/README.md)
- [Bank kata](bank-kata/README.md)
- [String Calculator](string-calculator/README.md)
- [Test Driven Development By Example](test-driven-development-by-example/README.md)
- [Let's Play TDD](lets-play-tdd/README.md)
- [Prime Number](prime-number/README.md)
- [Closer to zero](closer-to-zero/README.md)
- [Auth Service](authservice/README.md)
- [Bowling Game](bowling/README.md)
- [Movie](movie/README.md)
- [Name Inverter](name-inverter/README.md)