Pregunta

Are they same thing with different names?

the word "testing" in both somehow makes me think they are similar..

¿Fue útil?

Solución

Unit testing is writing code to test unit of code. There are no external dependencies in unit test. You can replace external dependencies with mocks/stubs.

TDD is writing the test(unit test) first before writing the actual code. Usually you write the test, see it fail, write the actual code or make changes, then see it pass.

You can read more about TDD at http://www.agiledata.org/essays/tdd.html

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top