Link between tests and user stories

Posted by Sardathrion on Programmers See other posts from Programmers or by Sardathrion
Published on 2012-12-12T13:31:19Z Indexed on 2012/12/12 17:18 UTC
Read the original article Hit count: 397

I have not see these links explicitly stated in the Agile literature I have read. So, I was wondering if this approach was correct: Let a story be defined as "In order to [RESULT], [ROLE] needs to [ACTION]" then

  1. RESULT generates system tests.
  2. ROLE generates acceptance tests.
  3. ACTION generates component and unit tests.

Where the definitions are the ones used in xUnit Patterns which to be fair are fairly standard.

Is this a correct interpretation or did I misunderstand something?

© Programmers or respective owner

Related posts about agile

Related posts about testing