L4 Requirements Elicitation Chapter4
L4 Requirements Elicitation Chapter4
• Today:
• Motivation: Software Lifecycle
• Requirements elicitation challenges
• Problem statement
• Requirements specification
• Types of requirements
• Validating requirements
Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 2
Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 3
Software Lifecycle Activities ...and their
models
Implemented By
Expressed in Structured By Verified
Realized By
Terms Of By
class...
class...
class... ?
class.... ?
Use Case Application Solution
Domain Subsystems Source Test
Model Domain
Objects Code Cases
Objects
Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 4
What does the Customer say?
Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 5
First step in identifying the Requirements:
System identification
• Two questions need to be answered:
1. How can we identify the purpose of a system?
• What are the requirements, what are the constraints?
2. What is inside, what is outside the system?
• These two questions are answered during
requirements elicitation and analysis
• Requirements elicitation:
• Definition of the system in terms understood by the
customer and/or user (“Requirements specification”)
• Analysis:
• Definition of the system in terms understood by the
developer (Technical specification, “Analysis model”)
• Requirements Process: Consists of the activities
Requirements Elicitation and Analysis.
Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 6
Software Lifecycle Activities
Requirements Process
Implemented
Expressed in By
Structured By Realized By
Terms Of Verified
By
class...
class...
class... ?
class.... ?
Use Case Application Solution
Domain Subsystems Source Test
Model Domain
Objects Code Case Model
Objects
Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 7
Techniques to elicit requirements
Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 8
Scenarios
• Scenario
• “A narrative description of what people do and
experience as they try to make use of computer systems
and applications”
• [M. Carroll, Scenario-Based Design, Wiley, 1995]
• A concrete, focused, informal description of a single
feature of the system used by a single actor
• A textual description of the usage of a system. The
description is written from an end user’s point of view
• A scenario can include text, video, pictures and story
boards. It usually also contains details about the work
place, social situations and resource constraints.
Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 9
Scenario-Based Design
Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 10
Heuristics for finding scenarios
Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 12
Scenario example: Warehouse on Fire
Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 13
Observations about the Warehouse on Fire
Scenario
• It is a concrete scenario
• It describes a single instance of reporting a
fire incident
• It does not describe all possible situations in
which a fire can be reported
• Participating actors
• Bob, Alice and John.
Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 14
It’s your turn…
Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 15
After the scenarios are formulated
• Find all the use cases in the scenario that
specify all instances of how to report a fire
• Example from the Warehouse on Fire scenario:
• “Bob… notices smoke coming out of a warehouse. His partner,
Alice, reports the emergency from her car”
• “Report Emergency” is a candidate for a use case
• Describe each of these use cases in more detail
• Participating actors
• Describe the entry condition
• Describe the flow of events
• Describe the exit condition
• Describe exceptions
• Describe nonfunctional requirements
• The set of all use cases is the basis for the
Functional Model(see next lecture)
Requirements Elicitation: Difficulties and
Challenges
• Accurate communication about the domain and
the system
• People with different backgrounds must collaborate to
bridge the gap between end users and developers
• Client and end users have application domain
knowledge
• Developers have solution domain knowledge
• Identification of an appropriate system
(Definition of the system boundary)
• Provision of an unambiguous specification
• Leaving out unintended features
Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 17
Example of an Ambiguous Specification
Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 18
Example of an Unintended Feature
From the News: London underground
train leaves station without driver!
What happened?
• A passenger door was stuck and did not close
• The driver left his train to close the passenger
door
• He left the driver door open
• He relied on the specification that said the train
does not move if at least one door is open
• When he shut the passenger door,
the train left the station without him. Why?
• The driver door was not treated
as a door in the source code!
Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 19
Requirements Process
Problem Statement
Requirements
Elicitation Use Case
Diagrams
Class State
Analysis Object Model Dynamic Model
Diagrams Diagrams
System Activity
Design Diagrams
UML Activity Diagram
Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 20
Requirements Specification vs Analysis
Model
Both are models focusing on the requirements
from the user’s view of the system
• The requirements specification uses natural
language (derived from the problem statement)
• Definition of the system in terms understood by the
customer and/or user
• The analysis model uses a formal or semi-formal
notation
• Definition of the system in terms understood by the
developer
Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 21
Types of Requirements
• Functional requirements
• Describe the interactions between the system and its
environment independent from the implementation
“An operator must be able to define a new game”
• Nonfunctional requirements
• Aspects not directly related to functional behavior
“The response time must be less than 1 second”
“The server must be available 24 hours a day”
• Constraints
• Imposed by the client or the environment
“The implementation language must be Java”
• Also called “Pseudo requirements”.
Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 22
Functional vs. Nonfunctional Requirements
Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 23
Types of Nonfunctional Requirements
• Usability • Implementation
• Reliability • Interface
• Robustness • Operation
• Safety • Packaging
• Performance • Legal
• Response time
• Licensing (GPL, LGPL)
• Scalability
• Certification
• Throughput
• Regulation
• Availability
• Supportability
• Adaptability
• Maintainability Constraints or
Quality requirements Pseudo requirements
Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 24
Nonfunctional Requirements: Examples
Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 25
Pseudo Requirements (constraints)
• Implementation requirements are constraints on the
implementation of the system, including the use of specific tools,
programming languages, or hardware platforms.
Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 26
What should not be in the Requirements?
Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 27
Requirements Validation
Requirements validation is a quality assurance
step, usually performed after requirements
elicitation or after analysis
• Correctness:
• The requirements represent the client’s view
• Completeness:
• All possible scenarios, in which the system can be used,
are described
• Consistency:
• There are no requirements that contradict each other.
Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 28
Requirements Validation (2)
• Clarity:
• Requirements can only be interpreted in one way
• Realism:
• Requirements can be implemented and delivered
• Traceability:
• Each system component and behavior can be traced to a
set of functional requirements
• Verifiability:
• Once the system is built, repeatable tests can be
designed to demonstrate that the system fulfills the
requirements specification.
Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 29
• Examples of non-verifiable requirements:
• The product shall have a good user interface.
—Good is not defined.
Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 30
Problems with requirements validation
Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 31
Different Types of Requirements Elicitation
• Greenfield Engineering
• Development starts from scratch, no prior system exists,
requirements come from end users and clients
• Triggered by user needs
• Example: Develop a game from scratch.
• Re-engineering
• Re-design and/or re-implementation of an existing system
using newer technology
• Triggered by technology enabler
• Example: Reengineer an existing game
• Interface Engineering
• Provision of existing services in a new environment
• Triggered by technology enabler or new market needs
• Example: Interface to an existing game, the game was
developed for a local computer, now we want to offer a
multiplayer-version
Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 32
Prioritizing Requirements
Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 33
Requirements Analysis Document Template
1. Introduction
2. Current system
3. Proposed system
3.1 Overview
3.2 Functional requirements
3.3 Nonfunctional requirements
3.4 Constraints (“Pseudo requirements”)
3.5 System models
3.5.1 Scenarios
3.5.2 Use case model
3.5.3 Object model
Analysis 3.5.3.1 Data dictionary
(Chapter 5) 3.5.3.2 Class diagrams
3.5.4 Dynamic models
3.5.5 User interface
4. Glossary
Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 36
Nonfunctional Requirements (2)
Hardware considerations
• What hardware is the proposed system to be used on?
• What are the characteristics of the target hardware,
including memory size and auxiliary storage space?
Performance characteristics
• Are there speed, throughput, response time constraints
on the system?
• Are there size or capacity constraints on the data to be
processed by the system?
Error handling and extreme conditions
• How should the system respond to input errors?
• How should the system respond to extreme conditions?
Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 37
Nonfunctional Requirements (3)
System interfacing
• Is input coming from systems outside the proposed
system?
• Is output going to systems outside the proposed system?
• Are there restrictions on the format or medium that must
be used for input or output?
Quality issues
• What are the requirements for reliability?
• Must the system trap faults?
• What is the time for restarting the system after a failure?
• Is there an acceptable downtime per 24-hour period?
• Is it important that the system be portable?
Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 38
Nonfunctional Requirements (4)
System Modifications
• What parts of the system are likely to be modified?
• What sorts of modifications are expected?
Physical Environment
• Where will the target equipment operate?
• Is the target equipment in one or several locations?
• Will the environmental conditions be ordinary?
Security Issues
• Must access to data or the system be controlled?
• Is physical security an issue?
Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 39
Nonfunctional Requirements (5)
Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 40
It’s your turn…
Bernd Bruegge & Allen H. Dutoit Object-Oriented Software Engineering: Using UML, Patterns, and Java 41