Exercise 1
Create test report for each function: include following items:
1. Number of test case
2. Number of passed test case
3. Number of fail test case
4. Number of untested test case
5. Number of N/A test case
6. Percentage of test coverage
7. Percentage of test successful coverage
Answer 1:
=> Conclusion:
Function ‘Manage student mark’ has many fail test case.
The system can not calculate student mark
Exercise 2
Create general defect report:
Open defects: base on severity (Fatal, serious, Medium,
Cosmetic) and status of defect ( Error, Assigned, Fixing,
Corrected, Confirming)
Fixed defects: base on severity (Fatal, serious, Medium,
Cosmetic) and status of defect Delivered, Validated,
Approved, Accepted, Canceled, Closed)
Total weight defect:
1 cosmetic defect = 1 w.def
1 medium defect = 3 w.def
1 serious defect = 5 w.def
1 fatal defect = 10 w.def
Answer 2:
Execise 3:
Create Defect distribution test report (include following information)
Number of defects for each process ( Requirement, Design, Coding, Test, Other)
Number of defects for each QC activities ( Unit test, Integration test, System test, Acceptance test, Code review, Document review, Final Inspection, Baseline audit
Total weight defect:
1 cosmetic defect = 1 w.def
1 medium defect = 3 w.def
1 serious defect = 5 w.def
1 fatal defect = 10 w.def
Answer 3:
Exercise 4
Create Defect trend
Draw graph to know found defects and fixed defect trend From date….. To date
Answer 4:
#18 Exercise to create test report
Related Posts:
#9 Test planningPurpose: Introduce Test Plan content and how to write a Test Plan document for a project Test Plan Objective Identify testing scope Identify test… Read More
#8 Testing Type and ExamplePurpose: Introduce general testing types Testing Types Functional testing Non-functional testing Recovery testing Alpha testing Beta testin… Read More
#11 Decision table testingHow to design test cases from given software models using the following test design techniques. Part 1: Decision table testing A Typical Struct… Read More
#12 How to create a decision table and exampleDecision Tables definition Concept: test the rules that govern handling of transactional situations Model: table (or Boolean graph) connecting con… Read More
#10 Test Design/ How to design testcase Requirement: If we are testing a program that generates the report card for a group of 10000students Problem: execute 1000 cases for 10000 stu… Read More