• 0 Posts
  • 1 Comment
Joined 1 year ago
cake
Cake day: July 5th, 2023

help-circle
  • TDD doesn’t imply that you write all the tests first. It just mean you have to write a test before you write a line of production code.

    The idea is to ask yourself “what is the first step I need, where am I going to begin?”. You then write a test that validate this first step and fail. Then you write the code to make it pass. Once your done with that, you ask yourself: "what’s the next step? ". You, then, repeat the process for that step.

    This is a process you are going to do anyway. Might as well take the time to write some test along with it.