Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can I use the Use Case Diagram in SCRUM? [closed]

I'm starting a project with a team and we're using SCRUM as methodology. It's my first time with SCRUM. We have listed our functionalities and we made our stories, (user stories and technical stories as well as their tasks).

I've a tight UML approach to start any dev project and for me, after listing all the functionalities, the next step is to make the User Cases Diagram to let everybody see what's the application going to do and who's gonna interact with it. But my team said that there's no interest in using UML in SCRUM.

Can I use the User Diagram of UML to represent the User Stories in SCRUM? Which other diagrams can be used in SCRUM? (It could be a stupid question 'cause I cannot imagine an application without a class Diagram or a Sequence Diagram, but I really wanna see the advice from the experts in SCRUM)

Thanks.

like image 270
jomaora Avatar asked Feb 07 '11 00:02

jomaora


People also ask

What should not be shown on a use case diagram?

It does not show the detail of the use cases: It only summarizes some of the relationships between use cases, actors, and systems. It does not show the order in which steps are performed to achieve the goals of each use case.

Can we use use cases in agile?

There is still a place for Use Cases in Agile, but their use is a bit different. Both User Stories and Use Cases identify users and user personas. They both describe the need or the goal. User Stories describe the value while Use Cases give you detailed steps and scenarios.

What are the three rules in Scrum?

Basic Scrum RulesThere are no Breaks Between Sprints. Every Sprint is the Same Length. The Intention of Every Sprint is “Potentially Shippable” Software. Every Sprint includes Sprint Planning.


1 Answers

Can I use the User Diagram of UML to represent the User Stories in SCRUM?

A use case diagram would be helpful, because it is pretty straightforward, and gives a high level idea what the project is about.

However I won't recommend to use any other UML diagram in scrum. I agree with the others that in an agile project the code changes so frequently that your diagrams will be obsolete after several days. In this case you have to redraw them, which is a waste.

For example if you are using eclipse for development, a simple refactoring step can ruin your class diagram :-(

Which other diagrams can be used in SCRUM?

I would suggest to use mindmaps. Recently we started to create our own user stories with drawing large mindmaps and put them on the office walls.

We have a feature in the middle, and we connect sub user stories to it - and sub-sub user stories to them -, and every available information we have at the moment. With this approach we have everything in one place: user stories, technical informations, questions, etc.

Of course the mindmap grows day by day, and we know more and more about the feature we have to implement.

Actually we are doing something similar described in this agile dzone article, but since you are using scrum not xp+kanban I talked about user stories not MMFs.

like image 147
Zsolt Avatar answered Oct 01 '22 02:10

Zsolt