What is TDD? Do you know anything about TDD?

匿名网友 匿名网友 发布于: 2015-08-30 00:00:00
阅读 119 收藏 0 点赞 0 评论 0

TDD stands for Test Driven Development. The process of TDD is writing a test first, then run it and proves it fails, and then implements your function and run the test again. If it’s still failing, change your code until the test passes.

评论列表