User stories vs use cases - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T03:38:43Z http://stackoverflow.com/feeds/question/378856 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/378856/user-stories-vs-use-cases 5 User stories vs use cases StackUnderflow 2008-12-18T19:07:36Z 2009-06-30T22:35:25Z <p>Are use cases just multiple user stories??</p> <p>What are the benefits of using user stories over use cases.. and vice-versa... When to use one over other... Does all agile methodologies uses user stories??</p> http://stackoverflow.com/questions/378856/user-stories-vs-use-cases/378871#378871 7 Answer by Jon Skeet for User stories vs use cases Jon Skeet 2008-12-18T19:13:09Z 2008-12-18T19:13:09Z <p>When it comes down to it "agile" is just a label, and people disagree over exactly what it means. Similarly people call very different things "use cases."</p> <p>In my experience the primary difference between the two is that a user story is focused on the user, and is usually shorter and less formal - ideally, it should easily fit on a postcard. It probably doesn't give details of error handling etc.</p> <p>Use cases <em>can</em> be much more formal (although some people write them informally too) - they focus on every interaction with the system, and may well go into more detail about several different systems/actors/etc within the same use case.</p> <p>That's just my experience though - chances are everyone will have used these tools in different ways. I wouldn't get too hung up about labels - just use what works for your project.</p> http://stackoverflow.com/questions/378856/user-stories-vs-use-cases/378879#378879 1 Answer by Elie for User stories vs use cases Elie 2008-12-18T19:14:31Z 2008-12-18T19:14:31Z <p>You can think of a usecase as a user story, but not the other way around. A usecase will cover multiple "endings" to the story, special requirements (e.g. form fields must be entered in format xyz, and show error message 123 if the user enters a field in the wrong format). Also, a usecase can include additional references to external documents, such as security guidelines.</p> http://stackoverflow.com/questions/378856/user-stories-vs-use-cases/378882#378882 1 Answer by Cory Foy for User stories vs use cases Cory Foy 2008-12-18T19:14:54Z 2008-12-18T19:14:54Z <p>In one word, no.</p> <p>Use Cases are typically detailed specifications laying out how some particular piece of functionality is going to work, or how a specific user is going to utilize the system. It typically is in the voice of a specific user (or Actor) and is fairly self-contained.</p> <p>A user story on the other hand is "an invitation for discussion". It is typically one or two sentences. <a href="http://www.extremeprogramming.org/rules/userstories.html" rel="nofollow">Here</a> is one good resource for that. And Mike Cohn's <a href="http://www.mountaingoatsoftware.com/book/2" rel="nofollow">User Stories Applied</a> is well worth it.</p> <p>The typical syntax is "As a I need to achieve ", or "To achieve as a I need " which drives home the value of the story.</p> <p>User stories are <em>not</em> meant to be stand-alone, but meant to invite discussion of the story between the developer and the customer (or customer proxy).</p> http://stackoverflow.com/questions/378856/user-stories-vs-use-cases/378912#378912 3 Answer by Charlie Martin for User stories vs use cases Charlie Martin 2008-12-18T19:24:11Z 2008-12-18T19:24:11Z <p>Actually, the original use cases (see <a href="http://rads.stackoverflow.com/amzn/click/0201544350" rel="nofollow">Jacobson's OOSE</a>) were pretty lightweight, much as user stories are now. Over time, they evolved until a common format for "use cases" now is a complicated document with inputs, outputs, inheritance, uses relationships, pseudocode, etc. Programmers, in general, try to convert everything into programming.</p> <p>In any case, the attempt to defined what distinguishes a "use case" from a "user story" fro a "scenario" is pretty futile, as it's hard to find two authorities who agree.\</p> <p>Personally, I find the pattern "[Actor] [verbs] [noun] to get [business value]" helpful. If it gets over about a paragraph of text, it may be too big.</p> http://stackoverflow.com/questions/378856/user-stories-vs-use-cases/378996#378996 3 Answer by Rob Wells for User stories vs use cases Rob Wells 2008-12-18T19:49:24Z 2008-12-18T19:49:24Z <p>Use cases aren't compilations of user stories.</p> <p>User stories are generally much simpler than use cases. I think use cases try to cover absolutely everything to do with the behaviour of some aspect of the system. That is, all behaviours, all error paths and all exception handling.</p> <p>The recommended template for a user is:</p> <blockquote> <p>As a (role) I want (something) so that (benefit)</p> </blockquote> <p>(Thanks Mike Cohn for providing this simple template)</p> <p>Descriptions of behaviour expressed like this are more agile.</p> <p>This sort of template lets you describe behaviour using different levels of detail. For example:</p> <ol> <li>for those stories being implemented in a much later sprint, you can describe behaviour in a high level sort of way, e.g. as an ops team member I want to monitor the system remotely so that I can determine system health while on the road.</li> <li>for those stories being implemented in the next sprint, you can describe behaviour is a slightly more detailed way, e.g. as an ops team member I want to have a dedicated ops only login so that I can check system health.</li> <li>for those stories being implemented in the current sprint, you can describe behaviour in a highly detailed way, e.g. as an ops team member I want to have a web interface so that I can check current status of the ingest ftp server.</li> </ol> <p>IMHO Use cases are much more carved in stone! And hence can be a problem to update after the initial version.</p> <p>HTH</p> <p>cheers,</p> <p>Rob</p>