Skip to content
This repository has been archived by the owner on Jan 13, 2023. It is now read-only.

bobocode-projects/tdd-exercises

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

42 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

This repo is DEPRECATED. Please use java-fundamentals-course

TDD exercises

The list of exercises dedicated to training your Test-driven development (TDD) skills

No pain, No gain ❗

Skill is only developed by hours and hours and hours of beating on your craft

Working on real problems, you're focused on finding a solution. Learning new things, you're trying to understand how it works. It is important to have a different type of activities, which purpose is improving your skill

An exercise is a predefined task that you continuously implement to improve a certain skill 💪

The three laws of TDD

  1. You should not write production code until you have written a failing unit test
  2. You should not write more of a unit test than is sufficient to fail (because of compilation errors)
  3. You should not write more production code than is sufficient to pass the failing test