BDD/TDD – exhaustively testing details which are low-level, but still behaviour
We’re looking to concentrate more on testing behaviour (as opposed to every class/method individually) in all our automated tests, as espoused by various high-profile online discussions recently. I like the idea of thinking about only what goes in and out of certain logical well-defined boundaries between components, but I’m having a hard time imagining how that relates to quite low-level detail of behaviour, that is only a small part of the overall requirement but still important to be correct.
BDD/TDD – exhaustively testing details which are low-level, but still behaviour
We’re looking to concentrate more on testing behaviour (as opposed to every class/method individually) in all our automated tests, as espoused by various high-profile online discussions recently. I like the idea of thinking about only what goes in and out of certain logical well-defined boundaries between components, but I’m having a hard time imagining how that relates to quite low-level detail of behaviour, that is only a small part of the overall requirement but still important to be correct.
If we have TDD and BDD why do we need QA for? [duplicate]
This question already has answers here: What is the role of QA in a BDD project? (6 answers) Closed 9 years ago. If we have TDD and BDD why do we need QA for? Isn’t the job of the developer to write bugs or failing tests? If this is true how a QA fit in? […]
If we have TDD and BDD why do we need QA for? [duplicate]
This question already has answers here: What is the role of QA in a BDD project? (6 answers) Closed 9 years ago. If we have TDD and BDD why do we need QA for? Isn’t the job of the developer to write bugs or failing tests? If this is true how a QA fit in? […]
If we have TDD and BDD why do we need QA for? [duplicate]
This question already has answers here: What is the role of QA in a BDD project? (6 answers) Closed 9 years ago. If we have TDD and BDD why do we need QA for? Isn’t the job of the developer to write bugs or failing tests? If this is true how a QA fit in? […]
Scenarios for library that will be used by developers
I’ve started learning BDD but I think I have some misunderstanding of how to use it correctly.
Scenarios for library that will be used by developers
I’ve started learning BDD but I think I have some misunderstanding of how to use it correctly.
Unit test approaches other than test-first and test-last? And what about variants of them? [closed]
Closed 9 years ago.
Can BDD and Lean methodologies be used together?
I was chatting with my product manager last week and he was bemoaning the lack of progress on our product. It’s a fair criticism, too. So we got to talking about to describe the writing of requirements. I’m a big fan of BDD and using something like the Gherkin syntax to describe how the system should behave in terms of a user or actor.
What TDD/BDD tests should be writen to test an ORM
So I’m writing an ORM for NodeJS and using Mocha + Chai to test it.