SlideShare a Scribd company logo
Software Testing 
gksha.ittraining@gmail.com
The Software Development Life Cycle 
Requirement 
Analysis 
Design 
Testing Coding 
Implementation 
 Software Requirement Specification 
 Design Specification 
 Test Strategy 
 Test Plan 
gksha.ittraining@gmail.com
Understanding Testing 
Testing 
Analyzing 
Review 
Verifying 
Validating 
Testing 
Manual Automated 
gksha.ittraining@gmail.com
Testing Objectives 
• Testing activity is performed to find 
defects in the software Detect Defects 
• Testing activity is performed to check 
if the software meets the specified 
requirements 
Determine 
specified 
Requirements are 
met 
• Testing activity is performed to test the 
performance of the application. 
Test the 
Performance 
gksha.ittraining@gmail.com
Testing Principles 
 Testing shows presence of defects 
 Exhaustive testing is impossible 
 Early Testing 
 Defect Clustering 
 Pesticide paradox 
 Testing is context dependent 
 Absence of errors fallacy 
gksha.ittraining@gmail.com
Software Testing Life Cycle 
Test Planning 
Test Analysis and 
Design 
Test Implementation 
and Execution 
Evaluating Exit 
Criteria and Reporting 
Test Closure Activities 
 Testing Objectives are defined 
 Test Case designing 
 Identifying the Test Data 
 Identifying the environment, 
Infrastructure and Tools 
 Test Executing 
 Test Results 
 Logging Defects 
 Re-testing 
 Verify if more testing is required 
 Test Summary Report 
 Test Archive 
gksha.ittraining@gmail.com
Test Types 
Test Type 
Functional 
Testing 
Non 
Functional 
Testing 
Confirmation 
Testing 
Regression 
Testing 
Testing the 
functionality 
against the 
software 
Testing the 
behavioral 
characteristic of the 
software 
Retesting No new defects are 
introduced in the 
process of fixing the 
earlier identified 
defects 
Black Box 
gksha.ittraining@gmail.com
Test Plan 
Test Plan 
Scope Approach Resources Schedule 
Test Plan describes 
 Assign mitigation and contingencies to the identified risks 
 Decide scope of testing according to level of risk 
 Features to be tested 
 Features not to be tested 
 Tasks to be performed 
 The environment in which testing is to be done 
 Test Schedule 
 Test Execution 
gksha.ittraining@gmail.com
Test Case 
Expected Output = Actual Result 
A test case is a document that contains detailed instructions for testing the 
functionality of a software application 
A Robust Test case should be 
 Independent to meet specific requirements 
 Easily understandable during testing 
 Free from spelling and grammatical mistakes. 
 Able to cover at least one functionality or requirement 
 Able to uncover bugs 
Test Components 
 Test Case Name  Objectives  Test Case ID 
 Prerequisites  Actions  Expected Result 
 Actual Result  Status  General Remarks 
gksha.ittraining@gmail.com
Black Box Test Design Technique 
Equivalence 
partitioning 
Boundary 
Value Analysis 
Error 
Guessing 
State 
Transition 
Syntax Testing 
Cause effect 
Graphic 
 Represents a set of valid and invalid conditions 
 Test condition which give similar results are grouped under one partition 
 Number of test cases is reduced considerably 
 Identifies bugs around the boundaries. 
 Takes into account output specifications when deriving test cases 
 Used to test the behavior of the application where the bug is most likely to occur 
 ADHOC method to identify tests that are likely to expose bugs. 
 Enables to make guess about bugs that are likely to be present in the application 
 Test Activities based on areas that are not covered by formal design techniques. 
 Enables you to test the transition from one state to another 
 Identifies the events which causes the transition and specifies Actions that result 
from the transition 
 Used to design test cases for software applications based on the syntax of the input. 
 Test the application with different set of input values 
 Used to identify possible causes of a problem by using the cause effect diagram 
 Analyze Cause of the problem 
 Identify the source of bugs and Observe the effects of the problem. 
gksha.ittraining@gmail.com
Execute a Test Case 
Test 
Log 
Pass Fail Blocked 
Attributes of Test Log 
 Test log identifier  Test Description  Test Case ID 
 Execution Description  Actual Result  Status 
 Environmental Information  Anomalous Events  Incident Identifier 
 Name of Tester  Date of testing  General Comments 
gksha.ittraining@gmail.com
Test Summary Report 
Parameters of Report 
 Number of Modules tested 
 Number of test cases passed or failed 
 Number of bugs identified 
Precondition of Test Summary Report 
 Test Log to be completed 
 Testing activities should to be completed 
 Testing execution should be completed 
Benefits of Test Summary Report 
 Effectiveness of testing effort 
 Quality of application 
 Test Coverage 
 Decide any change 
 Reference to lessons learned 
gksha.ittraining@gmail.com
Defect 
Defects are events that occurred during text execution and require 
investigation. 
New Open Assigned Resolved Verified Closed 
Defer 
Reject 
Reopen 
Defect Report 
 Defect ID 
 Defect Summary 
 Actual Result 
 Expected Result 
 Date and Time 
 Supporting Evidence 
 Potential Impact (Severity & Priority) 
 Found By 
 Assigned To 
 Status 
gksha.ittraining@gmail.com
Test Tools 
Functional 
Testing Tools 
Software 
Functionality 
Software Requirement 
Specifications 
Used mainly for regression testing 
Performance 
Testing Tools 
Load 
Speed Effectiveness 
Stress 
Features of Performance Test Tool 
 Generating Load 
 Measuring timing of transactions 
 Measuring average response time 
 Creating graphs and charts 
E.g. QTP, Winrunner 
E.g. Load Runner, 
gksha.ittraining@gmail.com
Test Management Tool 
Requirement 
Analysis 
Design 
Coding 
Implementation 
Testing 
Test 
Management 
Tool 
 Test Case Management 
 Test Schedule 
 Managing Test effort 
 Traceability 
 Test report 
 Defect Management 
E.g. HP Quality Center 
gksha.ittraining@gmail.com
Assessment 
gksha.ittraining@gmail.com
Question 1 
Which is the correct principle of testing? 
a. Testing is context independent. 
b. Testing shows presence of defects. 
c. Exhaustive testing is possible. 
d. Defects are evenly distributed across the modules of software. 
Answer: Testing shows presence of defects 
gksha.ittraining@gmail.com
Question 2 
Which is the first phase of the SDLC? 
a. Development 
b. Testing 
c. Analysis 
d. Design 
Answer: Analysis 
gksha.ittraining@gmail.com
Question 3 
Which level of testing detects defects in the integration of components? 
a. Alpha testing 
b. Component integration testing 
c. System integration testing 
d. Beta testing 
Answer: Component integration testing 
gksha.ittraining@gmail.com
Question 4 
True or False? If a software application has bugs, the expected and the 
actual test result will be different. 
a. True 
b. False 
Answer: True 
gksha.ittraining@gmail.com
Question 5 
Which attribute of a test log is used to describe the sequence of steps or 
actions to execute a test log? 
a. Execution description 
b. Test log identifier 
c. Test description 
d. Anomalous events 
Answer: Execution description 
gksha.ittraining@gmail.com
Question 6 
Which component of the test case provides a detailed description of every 
step of execution? 
a. Actual result 
b. Expected result 
c. Remarks 
d. Action 
Answer: Action 
gksha.ittraining@gmail.com
Question 7 
How many test cases will you need to achieve complete coverage on a 
branch? 
a. One 
b. Two 
c. Four 
d. Three 
Answer: Two 
gksha.ittraining@gmail.com
Question 8 
Risk priority helps you determine: 
a. Size of the testing team. 
b. Need for regression testing. 
c. Extent of testing required. 
d. Requirements for a testing tool. 
Answer: Extent of testing required 
gksha.ittraining@gmail.com
Question 9 
True or False? Before creating a test summary report, you need to ensure 
that each test case is given a test status such as pass, fail, or blocked. 
a. True 
b. False 
Answer: True 
gksha.ittraining@gmail.com
Question 10 
Which testing type will you perform to ensure that no new defects are 
introduced in a new build of the software? 
a. Component testing 
b. Confirmation testing 
c. Regression testing 
d. Acceptance testing 
Answer: Regression testing 
gksha.ittraining@gmail.com
Question 11 
True or False? White-box testing techniques are used at acceptance level 
testing. 
a. True 
b. False 
Answer: False 
gksha.ittraining@gmail.com
Question 12 
True or False? If software is delivered to the customer with defects in it, 
then it is a product risk. 
a. True 
b. False 
Answer: True 
gksha.ittraining@gmail.com
Question 13 
Which test case design technique is used to separate groups of input 
conditions to obtain the same kind of output? 
a. Equivalence partitioning 
b. State transition testing 
c. Error guessing 
d. Boundary value analysis 
Answer: Equivalence partitioning 
gksha.ittraining@gmail.com
Question 14 
What is the importance of test planning? 
a. To prepare test documents. 
b. To create a matrix for measuring test results. 
c. To define the testing approach. 
d. To evaluate exit criteria. 
Answer: To define the testing approach. 
gksha.ittraining@gmail.com
For any QA training and support 
related discussion, mail me at 
gksha.ittraining@gmail.com 
gksha.ittraining@gmail.com

More Related Content

PPTX
How to Design a Successful Test Automation Strategy
PPTX
Chapter 5 - Test Management
PDF
STLC (Software Testing Life Cycle)
PPT
Automation testing
PPTX
Chapter 6 - Tool Support for Testing
PPT
Software Testing Life Cycle
PPTX
Testing as a Managed Service using SLAs and KPIs
How to Design a Successful Test Automation Strategy
Chapter 5 - Test Management
STLC (Software Testing Life Cycle)
Automation testing
Chapter 6 - Tool Support for Testing
Software Testing Life Cycle
Testing as a Managed Service using SLAs and KPIs

What's hot (20)

PPTX
Chapter 2 - Testing Throughout the Development LifeCycle
PPT
Hybrid Automation Framework Development introduction
PPTX
QA Best Practices in Agile World_new
PPTX
Chapter 1 - Fundamentals of Testing
PDF
Chapter 3 - Performance Testing in the Software Lifecycle
PPT
Automation testing strategy, approach & planning
PDF
Chapter 6 - Test Tools and Automation
PPTX
Chapter 4 - Test Design Techniques
PPSX
Test Execution
PDF
Software Testing Life Cycle (STLC) | Software Testing Tutorial | Edureka
PDF
Automation testing introduction for FujiNet
PPTX
Chapter 4 - Testing Quality Characteristics
PDF
Chapter 2 - Test Management
PDF
Test automation methodologies
PDF
Chapter 5 - Improving the Testing Process
PPTX
Software testing life cycle
PPTX
Introduction to Automation Testing
PPTX
Test Automation and Selenium
PDF
Tech Talk #5 : Code Analysis SonarQube - Lương Trọng Nghĩa
PPTX
Chapter 3 - Static Testing
Chapter 2 - Testing Throughout the Development LifeCycle
Hybrid Automation Framework Development introduction
QA Best Practices in Agile World_new
Chapter 1 - Fundamentals of Testing
Chapter 3 - Performance Testing in the Software Lifecycle
Automation testing strategy, approach & planning
Chapter 6 - Test Tools and Automation
Chapter 4 - Test Design Techniques
Test Execution
Software Testing Life Cycle (STLC) | Software Testing Tutorial | Edureka
Automation testing introduction for FujiNet
Chapter 4 - Testing Quality Characteristics
Chapter 2 - Test Management
Test automation methodologies
Chapter 5 - Improving the Testing Process
Software testing life cycle
Introduction to Automation Testing
Test Automation and Selenium
Tech Talk #5 : Code Analysis SonarQube - Lương Trọng Nghĩa
Chapter 3 - Static Testing
Ad

Viewers also liked (20)

PPT
Chapter iv computer virus
PPTX
Computer virus-and-antivirus
PPT
Computer virus and antivirus
PPTX
Computer Virus and Spyware
PDF
Software Testing Interview Q&A – part 1
PPTX
Computer Viruses
DOC
Multiplateform testing
PDF
Fundamentals of Testing 2
PPTX
Intro to Unit Testing with test Driven Development
PPTX
Panganib na Dulot ng Computer Malware at Virus
PPTX
Idexcel Independent Testing Services Presentation
PDF
Software project management
PDF
Software Testing and Quality Assurance Assignment 2
DOCX
Some Commonly Asked Question For Software Testing
DOCX
Fresher interview question for software testing (QA) manual + basic automation
PPT
Testing Software Solutions
DOC
Manual Testing.
PPTX
Gosecure Software Testing
PPT
Presentation on java
PPT
Computer Virus And Antivirus-Sumon Chakraborty
Chapter iv computer virus
Computer virus-and-antivirus
Computer virus and antivirus
Computer Virus and Spyware
Software Testing Interview Q&A – part 1
Computer Viruses
Multiplateform testing
Fundamentals of Testing 2
Intro to Unit Testing with test Driven Development
Panganib na Dulot ng Computer Malware at Virus
Idexcel Independent Testing Services Presentation
Software project management
Software Testing and Quality Assurance Assignment 2
Some Commonly Asked Question For Software Testing
Fresher interview question for software testing (QA) manual + basic automation
Testing Software Solutions
Manual Testing.
Gosecure Software Testing
Presentation on java
Computer Virus And Antivirus-Sumon Chakraborty
Ad

Similar to Software testing - basics (20)

PDF
Software testing
PDF
Software testing
PPTX
Software testing basic
PPSX
Software Testing presentation
PPTX
Software testing & Quality Assurance
PPTX
QA Worskhop For Begginers In the Power Point Presentation
PPT
SE-Testing.ppt
PPTX
Software Quality Assurance
PPTX
Introduction to testing.
PPTX
Software testing a guide from experience
DOCX
Manual Testing Interview Questions & Answers.docx
PPSX
Introduction to software testing
PDF
Software Testing Future and Challenges
PPTX
softwaretestingppt-FINAL-PPT-1
PPTX
Software Testing
PDF
Seminar on Software Testing
PPTX
Software Testing
PPTX
Introduction to Software Testing Techniques
DOC
Testing
PPT
ISTQB, ISEB Lecture Notes
Software testing
Software testing
Software testing basic
Software Testing presentation
Software testing & Quality Assurance
QA Worskhop For Begginers In the Power Point Presentation
SE-Testing.ppt
Software Quality Assurance
Introduction to testing.
Software testing a guide from experience
Manual Testing Interview Questions & Answers.docx
Introduction to software testing
Software Testing Future and Challenges
softwaretestingppt-FINAL-PPT-1
Software Testing
Seminar on Software Testing
Software Testing
Introduction to Software Testing Techniques
Testing
ISTQB, ISEB Lecture Notes

Recently uploaded (20)

PDF
Classroom Observation Tools for Teachers
PPTX
IMMUNITY IMMUNITY refers to protection against infection, and the immune syst...
PPTX
PPH.pptx obstetrics and gynecology in nursing
PPTX
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
PPTX
1st Inaugural Professorial Lecture held on 19th February 2020 (Governance and...
PPTX
Pharma ospi slides which help in ospi learning
PPTX
Pharmacology of Heart Failure /Pharmacotherapy of CHF
PPTX
Microbial diseases, their pathogenesis and prophylaxis
PPTX
Introduction_to_Human_Anatomy_and_Physiology_for_B.Pharm.pptx
PPTX
school management -TNTEU- B.Ed., Semester II Unit 1.pptx
PDF
102 student loan defaulters named and shamed – Is someone you know on the list?
PDF
Physiotherapy_for_Respiratory_and_Cardiac_Problems WEBBER.pdf
PDF
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf
PDF
Computing-Curriculum for Schools in Ghana
PDF
01-Introduction-to-Information-Management.pdf
PDF
VCE English Exam - Section C Student Revision Booklet
PDF
Module 4: Burden of Disease Tutorial Slides S2 2025
PDF
Basic Mud Logging Guide for educational purpose
PDF
Supply Chain Operations Speaking Notes -ICLT Program
PDF
FourierSeries-QuestionsWithAnswers(Part-A).pdf
Classroom Observation Tools for Teachers
IMMUNITY IMMUNITY refers to protection against infection, and the immune syst...
PPH.pptx obstetrics and gynecology in nursing
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
1st Inaugural Professorial Lecture held on 19th February 2020 (Governance and...
Pharma ospi slides which help in ospi learning
Pharmacology of Heart Failure /Pharmacotherapy of CHF
Microbial diseases, their pathogenesis and prophylaxis
Introduction_to_Human_Anatomy_and_Physiology_for_B.Pharm.pptx
school management -TNTEU- B.Ed., Semester II Unit 1.pptx
102 student loan defaulters named and shamed – Is someone you know on the list?
Physiotherapy_for_Respiratory_and_Cardiac_Problems WEBBER.pdf
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf
Computing-Curriculum for Schools in Ghana
01-Introduction-to-Information-Management.pdf
VCE English Exam - Section C Student Revision Booklet
Module 4: Burden of Disease Tutorial Slides S2 2025
Basic Mud Logging Guide for educational purpose
Supply Chain Operations Speaking Notes -ICLT Program
FourierSeries-QuestionsWithAnswers(Part-A).pdf

Software testing - basics

  • 2. The Software Development Life Cycle Requirement Analysis Design Testing Coding Implementation  Software Requirement Specification  Design Specification  Test Strategy  Test Plan gksha.ittraining@gmail.com
  • 3. Understanding Testing Testing Analyzing Review Verifying Validating Testing Manual Automated gksha.ittraining@gmail.com
  • 4. Testing Objectives • Testing activity is performed to find defects in the software Detect Defects • Testing activity is performed to check if the software meets the specified requirements Determine specified Requirements are met • Testing activity is performed to test the performance of the application. Test the Performance gksha.ittraining@gmail.com
  • 5. Testing Principles  Testing shows presence of defects  Exhaustive testing is impossible  Early Testing  Defect Clustering  Pesticide paradox  Testing is context dependent  Absence of errors fallacy gksha.ittraining@gmail.com
  • 6. Software Testing Life Cycle Test Planning Test Analysis and Design Test Implementation and Execution Evaluating Exit Criteria and Reporting Test Closure Activities  Testing Objectives are defined  Test Case designing  Identifying the Test Data  Identifying the environment, Infrastructure and Tools  Test Executing  Test Results  Logging Defects  Re-testing  Verify if more testing is required  Test Summary Report  Test Archive gksha.ittraining@gmail.com
  • 7. Test Types Test Type Functional Testing Non Functional Testing Confirmation Testing Regression Testing Testing the functionality against the software Testing the behavioral characteristic of the software Retesting No new defects are introduced in the process of fixing the earlier identified defects Black Box gksha.ittraining@gmail.com
  • 8. Test Plan Test Plan Scope Approach Resources Schedule Test Plan describes  Assign mitigation and contingencies to the identified risks  Decide scope of testing according to level of risk  Features to be tested  Features not to be tested  Tasks to be performed  The environment in which testing is to be done  Test Schedule  Test Execution gksha.ittraining@gmail.com
  • 9. Test Case Expected Output = Actual Result A test case is a document that contains detailed instructions for testing the functionality of a software application A Robust Test case should be  Independent to meet specific requirements  Easily understandable during testing  Free from spelling and grammatical mistakes.  Able to cover at least one functionality or requirement  Able to uncover bugs Test Components  Test Case Name  Objectives  Test Case ID  Prerequisites  Actions  Expected Result  Actual Result  Status  General Remarks gksha.ittraining@gmail.com
  • 10. Black Box Test Design Technique Equivalence partitioning Boundary Value Analysis Error Guessing State Transition Syntax Testing Cause effect Graphic  Represents a set of valid and invalid conditions  Test condition which give similar results are grouped under one partition  Number of test cases is reduced considerably  Identifies bugs around the boundaries.  Takes into account output specifications when deriving test cases  Used to test the behavior of the application where the bug is most likely to occur  ADHOC method to identify tests that are likely to expose bugs.  Enables to make guess about bugs that are likely to be present in the application  Test Activities based on areas that are not covered by formal design techniques.  Enables you to test the transition from one state to another  Identifies the events which causes the transition and specifies Actions that result from the transition  Used to design test cases for software applications based on the syntax of the input.  Test the application with different set of input values  Used to identify possible causes of a problem by using the cause effect diagram  Analyze Cause of the problem  Identify the source of bugs and Observe the effects of the problem. gksha.ittraining@gmail.com
  • 11. Execute a Test Case Test Log Pass Fail Blocked Attributes of Test Log  Test log identifier  Test Description  Test Case ID  Execution Description  Actual Result  Status  Environmental Information  Anomalous Events  Incident Identifier  Name of Tester  Date of testing  General Comments gksha.ittraining@gmail.com
  • 12. Test Summary Report Parameters of Report  Number of Modules tested  Number of test cases passed or failed  Number of bugs identified Precondition of Test Summary Report  Test Log to be completed  Testing activities should to be completed  Testing execution should be completed Benefits of Test Summary Report  Effectiveness of testing effort  Quality of application  Test Coverage  Decide any change  Reference to lessons learned gksha.ittraining@gmail.com
  • 13. Defect Defects are events that occurred during text execution and require investigation. New Open Assigned Resolved Verified Closed Defer Reject Reopen Defect Report  Defect ID  Defect Summary  Actual Result  Expected Result  Date and Time  Supporting Evidence  Potential Impact (Severity & Priority)  Found By  Assigned To  Status gksha.ittraining@gmail.com
  • 14. Test Tools Functional Testing Tools Software Functionality Software Requirement Specifications Used mainly for regression testing Performance Testing Tools Load Speed Effectiveness Stress Features of Performance Test Tool  Generating Load  Measuring timing of transactions  Measuring average response time  Creating graphs and charts E.g. QTP, Winrunner E.g. Load Runner, gksha.ittraining@gmail.com
  • 15. Test Management Tool Requirement Analysis Design Coding Implementation Testing Test Management Tool  Test Case Management  Test Schedule  Managing Test effort  Traceability  Test report  Defect Management E.g. HP Quality Center gksha.ittraining@gmail.com
  • 17. Question 1 Which is the correct principle of testing? a. Testing is context independent. b. Testing shows presence of defects. c. Exhaustive testing is possible. d. Defects are evenly distributed across the modules of software. Answer: Testing shows presence of defects gksha.ittraining@gmail.com
  • 18. Question 2 Which is the first phase of the SDLC? a. Development b. Testing c. Analysis d. Design Answer: Analysis gksha.ittraining@gmail.com
  • 19. Question 3 Which level of testing detects defects in the integration of components? a. Alpha testing b. Component integration testing c. System integration testing d. Beta testing Answer: Component integration testing gksha.ittraining@gmail.com
  • 20. Question 4 True or False? If a software application has bugs, the expected and the actual test result will be different. a. True b. False Answer: True gksha.ittraining@gmail.com
  • 21. Question 5 Which attribute of a test log is used to describe the sequence of steps or actions to execute a test log? a. Execution description b. Test log identifier c. Test description d. Anomalous events Answer: Execution description gksha.ittraining@gmail.com
  • 22. Question 6 Which component of the test case provides a detailed description of every step of execution? a. Actual result b. Expected result c. Remarks d. Action Answer: Action gksha.ittraining@gmail.com
  • 23. Question 7 How many test cases will you need to achieve complete coverage on a branch? a. One b. Two c. Four d. Three Answer: Two gksha.ittraining@gmail.com
  • 24. Question 8 Risk priority helps you determine: a. Size of the testing team. b. Need for regression testing. c. Extent of testing required. d. Requirements for a testing tool. Answer: Extent of testing required gksha.ittraining@gmail.com
  • 25. Question 9 True or False? Before creating a test summary report, you need to ensure that each test case is given a test status such as pass, fail, or blocked. a. True b. False Answer: True gksha.ittraining@gmail.com
  • 26. Question 10 Which testing type will you perform to ensure that no new defects are introduced in a new build of the software? a. Component testing b. Confirmation testing c. Regression testing d. Acceptance testing Answer: Regression testing gksha.ittraining@gmail.com
  • 27. Question 11 True or False? White-box testing techniques are used at acceptance level testing. a. True b. False Answer: False gksha.ittraining@gmail.com
  • 28. Question 12 True or False? If software is delivered to the customer with defects in it, then it is a product risk. a. True b. False Answer: True gksha.ittraining@gmail.com
  • 29. Question 13 Which test case design technique is used to separate groups of input conditions to obtain the same kind of output? a. Equivalence partitioning b. State transition testing c. Error guessing d. Boundary value analysis Answer: Equivalence partitioning gksha.ittraining@gmail.com
  • 30. Question 14 What is the importance of test planning? a. To prepare test documents. b. To create a matrix for measuring test results. c. To define the testing approach. d. To evaluate exit criteria. Answer: To define the testing approach. gksha.ittraining@gmail.com
  • 31. For any QA training and support related discussion, mail me at gksha.ittraining@gmail.com gksha.ittraining@gmail.com