Code Coverage
Code Coverage
Code Coverage
Read B
If B = A
then Print they are the same
EndIf
Structure Based Test Design
Read A
Read B
If B = A
then Print they are the same
Else
Print they are different
EndIf
Structure Based Test Design
Read P
Read Q
IF P+Q > 100 THEN
Print Large
ENDIF
If P > 50 THEN
Print P Large
ENDIF
Structure Based Test Design
Structure Based Test Design
1. Read vehicle
2. Read colour
3. If vehicle = Car Then
4. If colour = Red Then
5. Print Fast
6. End If
7. End If
Structure Based Test Design
1. Read A
2. If A > 40 Then
3. A = A * 2
4. End If
5. If A > 100 Then
6. A = A 10
7. End If
Structure Based Test Design
1. Read bread
2. Read filling
3. If bread = Roll Then
4. If filling = Tuna Then
5. Price = 1.50
6. Else
7. Price = 1.00
8. End If
9. Else
10. Price = 0.75
11. End If
Read P
Read Q
If P + Q > 100 Then
Print Large
Else
If P + Q > 50
Print Medium
Else
Print Small
EndIf
EndIf
Structure Based Test Design
IF A > B THEN
C = A B
ELSE
C = A + B
ENDIF
Read D
IF C = D Then
Print Error
ENDIF
Structure Based Test Design
If the train ticket is a cheap-day return
then catch a train after 9.30am
Otherwise catch any train
Buy a coffee and enjoy the train journey
Structure Based Test Design
Switch PC on
Start outlook
IF outlook appears THEN
Send an email
Close outlook
1 test for statement coverage, 1 for branch coverage
1 test for statement coverage, 2 for branch coverage
1 test for statement coverage. 3 for branch coverage
2 tests for statement coverage, 2 for branch coverage
2 tests for statement coverage, 3 for branch coverage
Structure Based Test Design
Analyze the following highly simplified procedure:
Ask: What type of ticket do you require, single or return?
IF the customer wants return
Ask: What rate, Standard or Cheap-day?
IF the customer replies Cheap-day
Say: That will be 11:20
ELSE
Say: That will be 19:50
ENDIF
ELSE
Say: That will be 9:75
ENDIF
Now decide the minimum number of tests that are needed to ensure that all the
questions have been asked, all combinations have occurred and all replies given.
3
4
5
6
Structure Based Test Design
Consider the following:
Pick up and read the newspaper
Look at what is on television
If there is a program that you are interested in watching then
switch the television on and watch the program
Otherwise
Continue reading the newspaper
If there is a crossword in the newspaper then try and complete
the crossword
SC = 1 and DC = 1
SC = 1 and DC = 2
SC = 1 and DC = 3
SC = 2 and DC = 2
SC = 2 and DC = 3
Structure Based Test Design
Read A
Read B
If B > A
then MIN = A
If B = 2 x A
then Print Bingo!
EndIF
Else
Min = B
EndIF
Print MIN
Structure Based Test Design
If the pseudo-code below were a programming language,
how many tests are required to achieve 100% statement
coverage?
If x=3 then
Display_messageX;
If y=2 then
Display_messageY;
Else
Display_messageZ;
Else
Display_messageZ;
a. 1
b. 2
c. 3
d. 4
Structure Based Test Design
If x=3 then
Display_messageX;
If y=2 then
Display_messageY;
Else
Display_messageZ;
Else
Display_messageZ;
Using the same code example as above as question, how
many tests are required to achieve 100% branch/decision
coverage?
a. 1
b. 2
c. 3
d. 4
Structure Based Test Design
How many test cases are needed to achieve 100% decision
coverage
If (p = q)
{ S = S + 1;
If (S < 5)
{ t = 10 }
}
Else if (P > q )
{ T = 5 }
A. 3
B. 6
C. 5
D.4
Structure Based Test Design
How many test cases are necessary to cover all the possible
sequences of statements (paths) for the following program
fragment? Assume that the two conditions are independent
of each other: -
if (Condition 1)
then statement 1
else statement 2
if (Condition 2)
then statement 3
a. 2 Test Cases
b. 3 Test Cases
c. 4 Test Cases
d. Not achievable
Structure Based Test Design
How many test cases are needed to achieve 100% statement
coverage?
If ( ( temperature < 0) or
( temperature > 100)) {
alert (DANGER);
if ( (speed >100) and (load <= 50)) {
speed = 50;
}
} else {
Check = false;
}
5
4
2
3
Structure Based Test Design
Given the Following program
IF X < Y
THEN Statement 1;
ELSE IF Y >= Z
THEN Statement 2;
END
McCabes Cyclomatic Complexity is :
a. 2
b. 3
c. 4
d. 5
Structure Based Test Design