Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
它们是同一种东西但名称不同吗?
两者中的“测试”这个词让我觉得它们很相似。
单元测试是编写代码来测试代码单元。单元测试中没有外部依赖。您可以用模拟/存根替换外部依赖项。
TDD 在编写实际代码之前先编写测试(单元测试)。通常您编写测试,看到它失败,编写实际代码或进行更改,然后看到它通过。
您可以在http://www.agiledata.org/essays/tdd.html阅读有关 TDD 的更多信息