DEV Community

Discussion on: You don't know TDD

Collapse
 
sobhan_1995 profile image
Sobhan

whats is difference between tdd and unit test?

Collapse
 
anortef profile image
Adrián Norte

TDD is a way to develop using tests while unit tests are tests that aim to check and verify the smallest unit of your logic.

Unit testing is part of TDD but only a part, you need integration tests also.