Use Case Derived Test Cases
Use Case Derived Test Cases
Use Case Derived Test Cases
A Use Case is a top level category of system functionality, (i.e.: Log on, Shut
down, etc.). A Use Case has graphical representation, Figure 3, and a text
description. The diagram identifies all the actors (outside of the system)
involved in the function, as well as an indication of how the Use Case is
initiated. The collection of Use Case diagrams provides a ‘context’ diagram
of system interfaces. Each Use Case constitutes a complete list of events
initiated by an Actor1 and it specifies the interaction that takes place between
an Actor and the System.[1]. In a Use Case the system is viewed as opaque,
where only the inputs, outputs, and functionality matter.
• Helping to identify
MyClient : Client MyServer :
SpecialServer
ThisOperation ( )
data
• Focusing on the “What” O perator
Log Off
ThisOperation( )
UserAction( )
ThatOperation( )
Construction AnotherOperation( )
Class Diagrams
Cases
Figure 1: Use Cases Are Used To
We use the Use Cases to Develop The Static And Dynamic
discover the objects (in the Object Models
class diagram) that will
construct a system to satisfy all functional requirements, and to construct the
1
Actor is a role that a user plays with respect to the system, and need not be human. A single Actor may
perform in many Use Cases, A Use Case may have many Actors
1
scenarios that ensure the functionality can be supported. Conceptually, we
can view the functionality as a set of processes that run horizontally through
the system, and the objects as sub-system components that stand vertically.
Not every functionality uses every object, but each object may be used by
many functional requirements. This transition from a functional to an object
point-of-view is accomplished with Use Cases and Scenarios.
Parallel to the software development effort, the software test team can take
advantage of the Use Case format by deriving Test Cases and Test Scenarios
from them. Figure 2 depicts this process. The Use Cases and Test Cases are
so closely coupled, that on some programs, the Test Team takes ownership of
the Use Cases. In this way, both the software development and the test
development remain synchronized if changes to the requirements
specification occurs. The remainder of this paper describes the elements of a
Use Case, and provides an example of Test Case development based on Use
Cases.
2
Software Requirements
Design Level
Object Model
Class Design
Component Coding
& Unit Testing
Build Construction
Requirement Verification
System Integration SCR Work-off
The first step is to develop the Use Case topics from the functional
requirements of the Software Requirement Specification. The Use Case
topics are depicted as an oval with the Use Case name. See Figure 3. The
Diagram also identifies the Actors outside the system, and which participant
initiates the action.
The Use Case diagram just provides a quick overview of the relationship of
actors to Use Cases. The meat of the Use Case is the text description. This
text will contain the following:
• Name
• Brief Description
• SRS Requirements Supported
• Pre & Post Conditions Operator
Log Off
• Event Flow
3
second iteration the Event Flow of each Use Case can be flushed out. The
Event Flow may be the personification and role playing of the requirements
specification. The requirements in the Software Requirement Specification
are each uniquely numbered so that they may be accounted for in the
verification testing. These requirements should be mapped to the Use Case
that satisfies them for accountability.
The Pre-Condition specifies the required state of the system prior the start of
the Use Case. This can be used for a similar purpose in the Test Case. The
Post-Condition is the state of the system after the actor interaction. This may
be used for test pass/fail criteria.
The event flow is a description (usually a list) of the steps of the actor’s
interaction with the system and the system’s required response. Recall that
system is viewed as a black box. The event flow contains exceptions, which
may cause alternate paths through the event flow. The following is an
example of a Use Case for a telephone systems.
Exceptions:
E1: User enters invalid number,
Voice Prompt 42 is played,
User goes on-hook,
Use case ends
E2: etc...
A scenario is a single path through the Use Case event flow. Generally there
is one path that may be traversed that does not encounter exceptions (this is
referred to as the Happy Day scenario). There are as many exceptions path
scenarios as there are exceptions. Figure 4 graphically depicts the alternate
scenarios through a single Use Case.
4
Enter Building
Employee
Exit Building
Cleared Employee
System Maintenance
Security Supervisor
Now that we have had an introduction to Use Cases, let’s look at an example
of a Use Case and the Test Case derived from it. The Following problem
statement (from [3]) will serve as our Software Requirement Specification.
Given this problem statement, we may arrive at a Use Case diagram shown in
Figure 5.
The brief descriptions for these Use Cases might read as:
5
Enter Building : Employee enters the building using card
reader passage
Exit Building : Employee exits the building using card
reader passage
Enter Security Zone: Cleared Employee enters the vault using card
reader passage
Exit Security Zone: Cleared Employee exits the vault using card
reader passage
System Maintenance: Authorized user enters/edits employee card
data
Note that the enter and exit use cases could be combined into one use case
for the building and one for the security zone due to similarity between the
enter and exit functions.
Looking now at one particular Use Case, Enter Building, we would expect an
Event Flow such as:
The following events and the associated exceptions can then be generated for
the Enter Building use case.
1. Use case starts when the user slides a card through the card-reader
2. Card-reader scans employee ID from card
Exception 1: Card can’t be read
• Log event
• Use case ends
3. System validates employee access
Exception 2: Employee ID is invalid
• Log event
• Use case ends
6
4. System unlocks door for configured time period
Exception 3: System unable to unlock door
• Log event
• Use case ends
5. Employee opens door
Exception 4: Door is not opened
• System waits for timeout
• System locks door
• Use case ends
6. Employee enters and door shuts
Exception 5: Door is not shut
• System waits for timeout
• System attempts to lock door
• Log event
• Set alarm condition
• Use case ends
7. System locks door, Use case ends
Exception 6: Door fails to lock
• System waits for timeout
• System attempts to lock door
• Log event
• Set alarm condition
• Use case ends
For this Use Case, based on the above events and exceptions, we have
derived the following Test Case.
7
Test Condition 3: Invalid employee ID
• Swipe card with invalid employee ID
• Verify door is not unlocked
• Verify event is logged
Test Condition 4: System unable to unlock door
• Swipe card
• “Injected” failure of unlocking mechanism
• Verify event is logged
Test Condition 5: Door is not opened
• Swipe card
• Verify door is unlocked
• Don’t open the door and wait until timeout is exceeded
• Verify door is locked
Test Condition 6: Door is not shut after entry
• Swipe card
• Enter building
• Hold door open until timeout is exceeded
• Verify alarm is sounded
• Verify event is logged
Test Condition 7: Door fails to lock
• Swipe card
• Enter building
• “Injected” failure of locking mechanism
• Verify alarm is sounded
• Verify event is logged
Test cases 4 and 7 would normally be verified at the unit test or integration
test phase due to having to, presumably, use an intrusive method to fail the
lock mechanism.
There are, however, limitations of Using Use Cases For Test Case to be
continued Generation. Use cases are not used to model capacity and
performance related requirements, they are used to only model functional
requirements. Consequently the non-functional requirements need to be
verified outside of the use case generated tests cases.
Given the large number of use cases, and even larger number of scenarios,
some prioritization of the generated test cases must be performed to obtain a
8
reasonable set of tests to actually run. Besides prioritizing the tests that are to
be performed at system test time, use cases can also be verified at unit test
and integration and test time, thus spreading the test effort out over the more
of the life cycle of the project.
Conclusions
Deriving test cases from use cases ensures that the required functionality of
the system is both developed in the software and reflected in the test plan.
By working from the same specification, the use cases, development and test
are more likely to arrive at test time with the same expectations of the system.
Coordination between development and test is further ensured by having the
test organization take ownership of the use cases. In our organization, this
method has been used successfully on multiple projects.
References
[1] Ivar Jacobson, Object-Oriented Software Engineering: A Use Case
Driven Approach. Addison-Wesley, 1994