0
What is TTD and BTD and its difference?
3 odpowiedzi
+ 10
TDD or Test-Driven Development is a process for when you write and run your tests. Following it makes it possible to have a very high test-coverage. Test-coverage refers to the percentage of your code that is tested automatically, so a higher number is better. TDD also reduces the likelihood of having bugs in your tests, which can otherwise be difficult to track down.
BDD – Behavior-Driven Development – is perhaps the biggest source of confusion. When applied to automated testing, BDD is a set of best practices for writing great tests. BDD can, and should be, used together with TDD and unit testing methods.
https://codeutopia.net/blog/2015/03/01/unit-testing-tdd-and-bdd/
+ 1
👌 and thanks Bhavya Bhav. Sorry for typo