Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

After reading up on BDD (Behaviour driven development) and how to write good user stories with corresponding acceptance criteria. I'm finding myself a little bit confused when it comes to working with examples/acceptance criteria. BDD encourages us to work in cross functional teams with Prod owner, BA, QA, DEV etc to define these criteria. Also, BDD encourages us to stick to key examples when we define these acceptance criteria. My question is, What does key examples mean to you? Does this include examples which are trying to violate the other acceptance criteria for a particular story in order to demonstrate the boundaries of a story?

For example, let say we have a story called "Register User" and all it takes to register is to provide a valid email address. One of the key examples would obviously be

GIVEN I am an unregistered user
WHEN I provide xyz@xyz.com
THEN I should be notified that my registration was successful

What about other examples that would try to invalidate this business rule? Should we also provide examples such as

GIVEN I am an unregistered user
WHEN I provide aa~=233@xy;;z.com
THEN I should be notified that my email address is not valid

My example may be too simplistic because it would probably make sense to include the second example in this story. However, for more complicated stories we are finding ourselves discussing whether a particular example is a "key examples" or not. The QA team especially, come up with very good examples in how to test boundaries, validation etc. However, quite often we have the discussion whether these types of examples are regarded as key examples. Some argue that these types of examples doesn't add any business value and therefore shouldn't be part of the story. Any thoughts on this?

share|improve this question

4 Answers

"examples doesn't add any business value"

That question should happen about the feature in general - all stakeholders need to agree whether a particular feature adds any business value - if it does not then it will not be implemented. I don't think you can say, well this feature isn't that sexy, so lets not add a spec for it, we'll just add it to the code. In your example this is correct, you need to spec the edge cases and business rules.

BDD is about specifying every feature of the app (both user and system interaction) so that everyone has agreed goals and vision of what's about to be done, and has been done. A good side-effect is you get a set of tests that validate your specs.

I wouldn't want to be in the situation where something was delivered and the end-user said "what is this, we didn't ask for it" or the end user asked "we asked for this where is it?" - these questions should always be answered by referring back to your specs.

share|improve this answer

After a bit of digging around. I found the following article which quite nicely discuss the concept of key examples

http://cuke4ninja.com/sec_collaborative_feature_files.html

share|improve this answer

It's important to have examples for all edge cases, not only the obvious business cases.

Everyone should be able to put his trust into the test suite. If you omit edge cases, the QA people will not trust your tests (and rightfully so).

share|improve this answer

I would push the details down into the step definitions:

GIVEN I am an unregistered user
WHEN I provide an email address in a valid format
THEN I should be notified that my registration was successful

GIVEN I am an unregistered user
WHEN I provide an email address in a invalid format
THEN I should be notified that my registration was not successful

Within the step definitions, you can list valid and invalid addresses. You could work with the tester/QA to decide on these.

With this approach, you're not exposing minor implementation details to the product owner, but you are still testing the behaviour.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.