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?