Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

TDD (TEST Driven Development)

Introduction

Write your tests before writing your code

Steps

  1. Write a failing test
  2. Write the simplest code to make the test pass
  3. Refactor if necessary

Benefits

  1. Testable source code
  2. Full Coverage by Tests
  3. Simpler Implementation

Example

There is a simple Example here