FHTW Berlin Medieninformatik

FHTW Berlin
Fachbereich 4
Internationaler Studiengang
Internationale Medieninformatik (Bachelor)
SE: Software Engineering
Summer Term 2008

Exercise 1: Use Cases


Use-cases are a szenario-based technique for requirements elicitation. They were first proposed by Ivar Jacobsen as part of his Objectory methodology. There are many different variations on use cases, but the basic idea is to record the situation in which something happens, explain what should happen, and describe any exceptional circumstances which might arise.

In a scenario you describe a concrete use of the proposed system, using the names of a proposed user. In the use case we abstract away from the concrete situations in the scenarios and try and describe the general case. We have user roles and system functionality, which are depicted in diagrams as little stick figures and circles, respectively:

Example use case diagram

An actor is something or someone that interacts with the target system to produce an observable result. There are active and passive actors. They are usually drawn with a stick figure, although I sometimes enjoy using a stick-woman figure just to be ornery. Stickwoman picture

A use case is an instance of how an actor would use a software system or a service offered by the system. More than one actor can participate in a use case. We draw use case diagrams to visualize the use cases and write out the use cases using templates, such as the one given in Wikipedia. Use case diagrams are decorated with the name given to the use case.

A scenario will typically describe the sequence of concrete activities that happen when a user is interacting with the proposed system. It is a detailed, step-by-step description of observable behaviors - that is, it does not describe the internal workings of the machine, but what a user can observe from the outside. We are not worried about how it will be done on the inside, but instead just want to see if the use of the system makes sense.

We can branch inside a scenario using an if statement and can repeat steps using a while statement. A scenario will not have exceptional conditions. If it is describing one such exceptional interaction, then it explains each step of what happens. A scenario also does not extend another scenario - it just describes what happens in this concrete instance.

We give names to scenarios, so that we can talk about them. The name should somehow be connected to the use case it is describing. Then we describe any precondition that must hold before the scenario can commence. For example: The user has a valid EC card. Then the sequence of steps is listed, followed by a postcondition describing what must hold at the end of the scenario. For example, the account linked to the EC card has been debited by 100 Euros and the user now has 100 Euros cash in her hands and the card is now marked as having been used on the current day.

Name

ATM Cash Withdrawal
Precondition Emmy has an EC card with a readable magnetic stripe &
the EC card is valid &
the EC card is linked to an account with this bank
Sequence of steps
  1. Emmy puts her card in the magnetic card reader.
  2. A screen appears asking the user what she wants to do.
  3. She points to "display balance" on the screen.
  4. The machine displays the balance and a continuing menu.
  5. Emmy selects "other actions".
  6. Emmy selects "withdrawal".
  7. The machine asks for the PIN number.
  8. Emmy enters her PIN and presses the green button.
  9. The machine asks how much money she wants.
  10. Emmy selects the button labelled 150 Euros.
  11. If (Emmy has enough money in her account)
    then
    Money is prepared for dispensing
  12. Else (Error screen is displayed)
  13. The machine returns her EC card. .
  14. If (Money ready for dispensing)
    then
    Money is dispensed.
Postcondition

Emmy is in possession of her card and 150 Euros &
the bank account linked to this card has had 150 Euros deducted &
the card is now marked as having been used today.

There are also scenarios sometimes referred to as "secondary scenarios" which describe alternate paths. They have their own name, the name of the scenario to which they are referring, and a description of the problem or alternative faced.

Name Invalid PIN
Scenario based on ATM Cash Withdrawal
Exception Repeat steps 7 and 8 twice if the user enters in an invalid PIN. If the third time still does not give the correct PIN, then retain the card.

A number of scenarios are usually collected and abstrated into a Use Case and expressed graphically by a Use Case Diagram. The elements of a Use Case often include:

  1. Name of the use case
  2. Summary
  3. Actors involved
  4. Basic sequence of steps
  5. Alternate sequence
  6. Exceptions that can occur
  7. Extension points
  8. Trigger
  9. Assumptions
  10. Preconditions
  11. Postconditions
  12. Author and Date

You should realize that every author and every company have their own ways of describing Use Cases, but usually each of these aspects are addressed.We will be using the structure given here.

You may have heard that many countries are spending a lot of money purchasing election machines. Many of the machines have very serious software engineering errors in them. Ed Felten's blog "Freedom to Tinker" has an article in which he states that his sophmore Software Engineering students can do better, so I think you can design a system better than any on the market, too.

There is one problem: in Germany we have something called the "Wahlgrundsätze".

Die Grundsätze für die Wahl zum Deutschen Bundestag, zu den Landtagen und zu den Gemeindevertretungen sind im Grundgesetz in Art. 38 und Art. 28 festgelegt. Die Wahlen sind:

  1. allgemein: alle Staatsbürger ab einem bestimmten Alter können wählen und gewählt werden
  2. unmittelbar: die Wähler wählen direkt einen Abgeordneten oder mehrere über eine Liste
  3. frei: auf die Wähler darf keinerlei Druck ausgeübt werden, ihre Stimme für einen Kandidaten oder für eine Partei abzugeben; die Bürger sind auch frei, nicht zu wählen, es besteht keine Wahlpflicht
  4. gleich: jede Stimme zählt gleich viel
  5. geheim: es bleibt geheim, wie der Wähler abstimmt

Darüber hinaus muss eine Wahl nachträglich überprüfbar bzw. nachzählbar sind.

Your job over the course of the semester will be to design a system for holding elections according to the German rules for elections. We will not be implementing it, just designing it. Your first task is to form a team. There will be five groups of three and four group of two (one group of three uses the table and the teacher's computer, the rest sit together in the lab the way the computers are set up). You may choose a team name if you wish. Use one of the UML tools we have available in the lab for drawing the use case diagram: Innovator 9.1, Together 2007, Visual Paradgm, ObjectiF. I personally like ObjectiF, but you can use one of these - or any you find on the net that you can install on your laptops.

  1. Your first job is to identify the actors in an electoral system. Give them names and a one sentence description of their job.
  2. Now each of you develops at least two scenarios - that means 6 scenarios for a 3-person-group, at least 4 for a two-person group.
  3. From the scenarios now make at least as many use cases as there are members of the group, and draw a use case diagram to show how your actors communicate. Try to generalize from some concrete situations, what is the common part? Can you perhaps even define an inheritance hierarchy, that is, there is a general, a sort of "super" use case that has specialist use cases? Fix the use case diagram to reflect this! We use arrows between the use case ovals to denote this. Look up the syntax on the web and include the URL of where you found it in your report.

There is a forum for submitting exercises in Moodle - please have your exercises online here by midnight the day before the next exercise, that is, usually 2 weeks later. Please include all materials - scenarios, use cases and use case diagrams - and don't forget to put the names of each person involved on the report. A report should include information on the class, the lab, the date, and all explainations should be in complete sentences, either in German or in English. Include a short (2-3 sentence) reflection on how difficult you found this exercise and how long you spent in and out of class. All material in this exercise should reflect your own work - submitting work of others is not acceptable. If your materials are not in on time, the exercise will be marked failed, 0 points.


Copyright 2006, 2007, 2008. Prof. Dr. Debora Weber-Wulff       All rights reserved.
Questions or comments: <weberwu@fhtw-berlin.de>