0

What is TTD and BTD and its difference?

24th May 2019, 3:18 AM
Mouli S
Mouli S - avatar
2 Respostas
+ 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/
24th May 2019, 3:26 AM
JTLZ
+ 1
👌 and thanks Bhavya Bhav. Sorry for typo
24th May 2019, 3:29 AM
Mouli S
Mouli S - avatar