SlideShare uma empresa Scribd logo
1 de 29
Name : Ravi Teja Dasari
INDEX
1. Introduction to Software
i. Definition
ii. Types of Software
2. Introduction to SOFTWARE TESTING
i. Objectives of Software Testing
ii. Purpose of Software Testing
3. Types of TESTING
4. Software Testing Life Cycle(STLC)
5. Summary
Introduction to Software:
Definition:
Software, in it’s general terms, is a set of instructions or
programs instructing a computer to do specific tasks. It is a
general term used to describe computer program.
It can also be defined as the process of verifying and
validating the software application with respect to the customer
requirements.
Types of Software:
Practical computer systems divide software systems into
three major classes:
1. System Software
2. Programming Software
3. Application Software
System Software:
provides the basic functions for computer usage and helps
to run the computer hardware and system.
purpose is to unburden the application software
programmer from the often complex details of the particular
computer being used such as device readers, printers,
keyboards.
Programming Software:
usually provides tools to assist a programmer in writing
computer programs, and software using different programming
languages in a more convenient way.
Tools include: compilers, interpreters, debuggers, linkers.
Application Software:
is developed for some certain purpose, which either can
be a certain program or a collection of some programmes, such
as a graphic browser or the data base management system.
allows end users to accomplish one or more specific tasks.
Software Testing:
Introduction:
Testing is a process used to help identify the correctness,
completeness and quality of developed computer software.
Testing can never completely establish the correctness of
computer software.
One definition of testing is "the process of questioning a
product in order to evaluate it", where the "questions" are
things the tester tries to do with the product, and the product
answers with it’s behaviour in reaction to the probing of the
tester.
Testing helps in Verifying and Validating if the Software
is working as it is intended to be working.
Objectives of Software Testing:
 To ensure that the software satisfies the BRS i.e., Business
Requirement Specification and SRS i.e., System Requirement
Specifications.
 Finding defects which may get created by the programmer
while developing the software.
 Gaining confidence in and providing information about the
level of quality.
 To prevent defects.
 To gain the confidence of the customers by providing them a
quality product.
 To make sure that the end result meets the business and user
requirements.
Purpose of Software Testing:
 Software testing is really required to point out the defects and
errors that were made during the development phases.
 It’s essential since it makes sure of the Customer’s reliability
and their satisfaction in the application.
 It is very important to ensure the Quality of the
product. Quality product delivered to the customers helps in
gaining their confidence.
 Testing is necessary in order to provide the facilities to the
customers like the delivery of high quality product or
software application which requires lower maintenance cost
and hence results into more accurate, consistent and reliable
results.
 Testing is required for an effective performance of software
application or product.
 It’s important to ensure that the application should not result
into any failures because it can be very expensive in the
future or in the later stages of the development.
Types of TESTING:
Testing of a software is done based on 5 major classifications
namely:
1. Source of test
2. Life Cycle phase
3. Goal of specific testing activity
4. Characteristics of the artifact under test
5. Test process
Source of test:
 Black box testing – is a method that examines the functionality
of an application without peering into its internal structures or
working. Tests are based on requirements and functionality.
 Also known as Closed box Testing.
 White box testing – is a method that tests internal structures or
workings of an application, as opposed to its functionality. This
testing is based on knowledge of the internal logic of an
application’s code.
 Also known as Glass box Testing, Clear box Testing.
 Internal software and code working should be known for this type of
testing. Tests are based on coverage of code statements, branches, paths,
conditions.
 Interface Testing – is performed to evaluate whether systems or
components pass data and control correctly to one another.
 Ad hoc Testing – is a method performed without planning and
documentation, but can be applied to early scientific
experimental studies.
Life Cycle phase:
 Unit Testing – is a method of testing of individual software
components or modules.
 Typically done by the programmer and not by testers, as it requires
detailed knowledge of the internal program design and code.
 Integration Testing – is a method of testing of integrated
modules to verify combined functionality after integration.
 Modules are typically code modules, individual applications, client and
server applications on a network, etc.
 This type of testing is especially relevant to client/server and distributed
systems.
 System Testing – Entire system is tested as per the
requirements.
 Black-box type testing that is based on overall requirements
specifications, covers all combined parts of a system.
 Regression Testing – Testing the application as a whole for the
modification in any module or functionality. Difficult to cover
all the system in regression testing so typically automation
tools are used for these testing types.
 Beta Testing – Final testing before releasing application for
commercial purpose. It is typically done by end-users or others.
Goal of specific testing activity:
 Robustness Testing – is any quality assurance methodology
focused on testing the robustness of software.
 Stress Testing – Testing technique which evaluates a system or
component at or beyond the limits of its specified
requirements.
 usually conducted by the performance engineer.
 Performance Testing – is the process of determining the speed
or effectiveness of a computer, network, software program or
device.
 usually conducted by the performance engineer.
 Load Testing – is a performance testing to check system
behaviour under load. Testing an application under heavy
loads, such as testing of a web site under a range of loads to
determine at what point the system’s response time degrades or
fails.
 usually conducted by the performance engineers.
Test Process:
 Waterfall Model – Requirement Analysis
Design
System Testing
Coding & Unit Testing
Integration & subsystem
Testing
Maintenance
Training & Delivery
Acceptance Testing
 V- model –
Requirement Analysis
Design
System Testing
Coding
Integration & subsystem
Testing
Maintenance
Acceptance Testing
Develop unit tests
Unit Testing
Validate requirement
Develop system acceptance tests
Validate design
Develop integration tests
 Agile Testing – Agile is an iterative development methodology,
where requirements evolve through collaboration between the
customer and self-organizing teams and agile aligns
development with customer needs.
Software Testing Life Cycle(STLC):
is a testing process which is executed in a sequence, in
order to meet the quality goals. It is not a single activity but it
consists of many different activities which are executed to
achieve a good quality product.
Sequence of STLC:
1. Requirement Analysis
2. Test Planning
3. Test Case Development
4. Environment Setup
5. Test Execution
6. Test Cycle Closure
Process Chart of STLC:
Requirements
Analysis
Test Planning
Test Case
Development
Environment Setup
Test Execution
Test Cycle Closure
Requirement Analysis:
Activities to be done:
 Analyzing the SRS from the testing point of view.
 Identifying the testing techniques and testing types.
 Prioritizing the feature which need focused testing.
 Analyzing the Automation feasibility.
 Identifying the details about the testing environment where
actual testing will be done.
Outcomes:
 Requirement Traceability Matrix.
 Automation feasibility report.
Test Planning:
Activities to be done:
 Estimation of testing effort.
 Selection of Testing Approach.
 Preparation of Test Plan, Test strategy documents.
 Resource planning and assigning roles and responsibility to
them.
 Selection of Testing tool.
Outcomes:
 Test Plan document.
 Test Strategy document.
 Best suited Testing Approach.
Test Case Development:
Activities to be done:
 Creation of test cases.
 Creation of test scripts if required.
 Verification of test cases and automation scripts.
 Creation of Test Data in testing environment.
Outcomes:
 Test cases.
 Test scripts (for automation if required).
 Test Data.
Environment Setup:
Activities to be done:
 As per the Requirement and Architecture document the list of
required software and hardware is prepared.
 Setting up of test environment.
 Creation of test data.
 Installation of build and execution of Smoke testing on it.
Outcomes:
 Test Environment setup is ready.
 Test Data is created.
 Results of Smoke testing.
Test Execution:
Activities to be done:
 Execution of Test Cases.
 Reporting test results.
 Logging defects for the failed test cases.
 Verification and retesting of the defect.
 Closure of defects.
Outcomes:
 Test execution Report.
 Updated test cases with results.
 Bug Report.
Test Cycle Closure:
Activities to be done:
 To evaluate the test completion on the basis of Test Coverage
and Software Quality.
 Documentation of the learning from the project.
 Analyzing the test results to find out the distribution of severe
defects.
 Test Closure Report preparation.
Outcomes:
 Report of Test Closure.
Thank you

Mais conteúdo relacionado

Mais procurados

Testing Types And Models
Testing Types And ModelsTesting Types And Models
Testing Types And Modelsnazeer pasha
 
Software testing methods, levels and types
Software testing methods, levels and typesSoftware testing methods, levels and types
Software testing methods, levels and typesConfiz
 
Fundamentals of testing (1)
Fundamentals of testing (1)Fundamentals of testing (1)
Fundamentals of testing (1)Aziz Chikhly
 
Ppt 2 testing throughout the software life cycle
Ppt 2 testing throughout the software life cyclePpt 2 testing throughout the software life cycle
Ppt 2 testing throughout the software life cyclesanti suryani
 
softwaretestingppt-FINAL-PPT-1
softwaretestingppt-FINAL-PPT-1softwaretestingppt-FINAL-PPT-1
softwaretestingppt-FINAL-PPT-1FAIZALSAIYED
 
Software testing basic
Software testing basicSoftware testing basic
Software testing basicRohit Singh
 
Fundamentals of Testing
Fundamentals of TestingFundamentals of Testing
Fundamentals of TestingCode95
 
Chapter 3 - Performance Testing in the Software Lifecycle
Chapter 3 - Performance Testing in the Software LifecycleChapter 3 - Performance Testing in the Software Lifecycle
Chapter 3 - Performance Testing in the Software LifecycleNeeraj Kumar Singh
 
Verification and Validation in Software Engineering SE19
Verification and Validation in Software Engineering SE19Verification and Validation in Software Engineering SE19
Verification and Validation in Software Engineering SE19koolkampus
 
Testing strategies in Software Engineering
Testing strategies in Software EngineeringTesting strategies in Software Engineering
Testing strategies in Software EngineeringMuhammadTalha436
 
Gl istqb testing fundamentals
Gl istqb testing fundamentalsGl istqb testing fundamentals
Gl istqb testing fundamentalsPragya Rastogi
 
Introduction to software testing
Introduction to software testingIntroduction to software testing
Introduction to software testingVenkat Alagarsamy
 
Test cases planning
Test cases planningTest cases planning
Test cases planningAbdul Basit
 
FUNDAMENTAL TEST PROCESS
FUNDAMENTAL TEST PROCESSFUNDAMENTAL TEST PROCESS
FUNDAMENTAL TEST PROCESSMeychiaGaiza
 
Role of BA in Testing
Role of BA in TestingRole of BA in Testing
Role of BA in TestingVeneet-BA
 

Mais procurados (20)

Pmt 05
Pmt 05Pmt 05
Pmt 05
 
Fundamental test process
Fundamental test processFundamental test process
Fundamental test process
 
Testing Types And Models
Testing Types And ModelsTesting Types And Models
Testing Types And Models
 
Software testing methods, levels and types
Software testing methods, levels and typesSoftware testing methods, levels and types
Software testing methods, levels and types
 
Software testing strategies
Software testing strategiesSoftware testing strategies
Software testing strategies
 
Fundamentals of testing (1)
Fundamentals of testing (1)Fundamentals of testing (1)
Fundamentals of testing (1)
 
Software testing
Software testingSoftware testing
Software testing
 
Ppt 2 testing throughout the software life cycle
Ppt 2 testing throughout the software life cyclePpt 2 testing throughout the software life cycle
Ppt 2 testing throughout the software life cycle
 
softwaretestingppt-FINAL-PPT-1
softwaretestingppt-FINAL-PPT-1softwaretestingppt-FINAL-PPT-1
softwaretestingppt-FINAL-PPT-1
 
Software testing basic
Software testing basicSoftware testing basic
Software testing basic
 
Fundamentals of Testing
Fundamentals of TestingFundamentals of Testing
Fundamentals of Testing
 
Chapter 3 - Performance Testing in the Software Lifecycle
Chapter 3 - Performance Testing in the Software LifecycleChapter 3 - Performance Testing in the Software Lifecycle
Chapter 3 - Performance Testing in the Software Lifecycle
 
Software Testing
Software TestingSoftware Testing
Software Testing
 
Verification and Validation in Software Engineering SE19
Verification and Validation in Software Engineering SE19Verification and Validation in Software Engineering SE19
Verification and Validation in Software Engineering SE19
 
Testing strategies in Software Engineering
Testing strategies in Software EngineeringTesting strategies in Software Engineering
Testing strategies in Software Engineering
 
Gl istqb testing fundamentals
Gl istqb testing fundamentalsGl istqb testing fundamentals
Gl istqb testing fundamentals
 
Introduction to software testing
Introduction to software testingIntroduction to software testing
Introduction to software testing
 
Test cases planning
Test cases planningTest cases planning
Test cases planning
 
FUNDAMENTAL TEST PROCESS
FUNDAMENTAL TEST PROCESSFUNDAMENTAL TEST PROCESS
FUNDAMENTAL TEST PROCESS
 
Role of BA in Testing
Role of BA in TestingRole of BA in Testing
Role of BA in Testing
 

Semelhante a Software Testing Life Cycle

Welingkar_final project_ppt_IMPORTANCE & NEED FOR TESTING
Welingkar_final project_ppt_IMPORTANCE & NEED FOR TESTINGWelingkar_final project_ppt_IMPORTANCE & NEED FOR TESTING
Welingkar_final project_ppt_IMPORTANCE & NEED FOR TESTINGSachin Pathania
 
Object oriented testing
Object oriented testingObject oriented testing
Object oriented testingHaris Jamil
 
Objectorientedtesting 160320132146
Objectorientedtesting 160320132146Objectorientedtesting 160320132146
Objectorientedtesting 160320132146vidhyyav
 
Software testing & Quality Assurance
Software testing & Quality Assurance Software testing & Quality Assurance
Software testing & Quality Assurance Webtech Learning
 
Software testing
Software testingSoftware testing
Software testingSengu Msc
 
Software testing
Software testingSoftware testing
Software testingSengu Msc
 
Software Testing PPT | Software All Testing
Software Testing PPT | Software All TestingSoftware Testing PPT | Software All Testing
Software Testing PPT | Software All Testingsankalpkumarsahoo174
 
Mca se chapter_07_software_validation
Mca se chapter_07_software_validationMca se chapter_07_software_validation
Mca se chapter_07_software_validationAman Adhikari
 
Software Testing
Software TestingSoftware Testing
Software TestingSengu Msc
 
Validation & verification software engineering
Validation & verification software engineeringValidation & verification software engineering
Validation & verification software engineeringSweta Kumari Barnwal
 
Object Oriented Testing(OOT) presentation slides
Object Oriented Testing(OOT) presentation slidesObject Oriented Testing(OOT) presentation slides
Object Oriented Testing(OOT) presentation slidesPunjab University
 
38475471 qa-and-software-testing-interview-questions-and-answers
38475471 qa-and-software-testing-interview-questions-and-answers38475471 qa-and-software-testing-interview-questions-and-answers
38475471 qa-and-software-testing-interview-questions-and-answersMaria FutureThoughts
 

Semelhante a Software Testing Life Cycle (20)

Welingkar_final project_ppt_IMPORTANCE & NEED FOR TESTING
Welingkar_final project_ppt_IMPORTANCE & NEED FOR TESTINGWelingkar_final project_ppt_IMPORTANCE & NEED FOR TESTING
Welingkar_final project_ppt_IMPORTANCE & NEED FOR TESTING
 
Object oriented testing
Object oriented testingObject oriented testing
Object oriented testing
 
Objectorientedtesting 160320132146
Objectorientedtesting 160320132146Objectorientedtesting 160320132146
Objectorientedtesting 160320132146
 
Software testing & Quality Assurance
Software testing & Quality Assurance Software testing & Quality Assurance
Software testing & Quality Assurance
 
Qa analyst training
Qa analyst training Qa analyst training
Qa analyst training
 
Software testing
Software testingSoftware testing
Software testing
 
Software testing
Software testingSoftware testing
Software testing
 
Software Testing PPT | Software All Testing
Software Testing PPT | Software All TestingSoftware Testing PPT | Software All Testing
Software Testing PPT | Software All Testing
 
Mca se chapter_07_software_validation
Mca se chapter_07_software_validationMca se chapter_07_software_validation
Mca se chapter_07_software_validation
 
Software_Testing_ppt.pptx
Software_Testing_ppt.pptxSoftware_Testing_ppt.pptx
Software_Testing_ppt.pptx
 
testing.pptx
testing.pptxtesting.pptx
testing.pptx
 
Software Testing
Software TestingSoftware Testing
Software Testing
 
Testing
TestingTesting
Testing
 
Quality Assurance and Testing services
Quality Assurance and Testing servicesQuality Assurance and Testing services
Quality Assurance and Testing services
 
System testing
System testingSystem testing
System testing
 
Validation & verification software engineering
Validation & verification software engineeringValidation & verification software engineering
Validation & verification software engineering
 
Object Oriented Testing(OOT) presentation slides
Object Oriented Testing(OOT) presentation slidesObject Oriented Testing(OOT) presentation slides
Object Oriented Testing(OOT) presentation slides
 
Software-Testing-ppt.pptx
Software-Testing-ppt.pptxSoftware-Testing-ppt.pptx
Software-Testing-ppt.pptx
 
38475471 qa-and-software-testing-interview-questions-and-answers
38475471 qa-and-software-testing-interview-questions-and-answers38475471 qa-and-software-testing-interview-questions-and-answers
38475471 qa-and-software-testing-interview-questions-and-answers
 
Best software testing course
Best software testing courseBest software testing course
Best software testing course
 

Último

Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...
Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...
Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...RKavithamani
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesFatimaKhan178732
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdfQucHHunhnh
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Krashi Coaching
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxNirmalaLoungPoorunde1
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxiammrhaywood
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdfssuser54595a
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Sapana Sha
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...EduSkills OECD
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfchloefrazer622
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingTechSoup
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxheathfieldcps1
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfJayanti Pande
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Educationpboyjonauth
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionSafetyChain Software
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdfQucHHunhnh
 
Student login on Anyboli platform.helpin
Student login on Anyboli platform.helpinStudent login on Anyboli platform.helpin
Student login on Anyboli platform.helpinRaunakKeshri1
 

Último (20)

Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...
Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...
Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and Actinides
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptx
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
 
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdfTataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
 
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptxINDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdf
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdf
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Education
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory Inspection
 
Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
Student login on Anyboli platform.helpin
Student login on Anyboli platform.helpinStudent login on Anyboli platform.helpin
Student login on Anyboli platform.helpin
 

Software Testing Life Cycle

  • 1. Name : Ravi Teja Dasari
  • 2. INDEX 1. Introduction to Software i. Definition ii. Types of Software 2. Introduction to SOFTWARE TESTING i. Objectives of Software Testing ii. Purpose of Software Testing 3. Types of TESTING 4. Software Testing Life Cycle(STLC) 5. Summary
  • 3. Introduction to Software: Definition: Software, in it’s general terms, is a set of instructions or programs instructing a computer to do specific tasks. It is a general term used to describe computer program. It can also be defined as the process of verifying and validating the software application with respect to the customer requirements. Types of Software: Practical computer systems divide software systems into three major classes: 1. System Software 2. Programming Software 3. Application Software
  • 4. System Software: provides the basic functions for computer usage and helps to run the computer hardware and system. purpose is to unburden the application software programmer from the often complex details of the particular computer being used such as device readers, printers, keyboards. Programming Software: usually provides tools to assist a programmer in writing computer programs, and software using different programming languages in a more convenient way. Tools include: compilers, interpreters, debuggers, linkers.
  • 5. Application Software: is developed for some certain purpose, which either can be a certain program or a collection of some programmes, such as a graphic browser or the data base management system. allows end users to accomplish one or more specific tasks.
  • 6. Software Testing: Introduction: Testing is a process used to help identify the correctness, completeness and quality of developed computer software. Testing can never completely establish the correctness of computer software. One definition of testing is "the process of questioning a product in order to evaluate it", where the "questions" are things the tester tries to do with the product, and the product answers with it’s behaviour in reaction to the probing of the tester. Testing helps in Verifying and Validating if the Software is working as it is intended to be working.
  • 7. Objectives of Software Testing:  To ensure that the software satisfies the BRS i.e., Business Requirement Specification and SRS i.e., System Requirement Specifications.  Finding defects which may get created by the programmer while developing the software.  Gaining confidence in and providing information about the level of quality.  To prevent defects.  To gain the confidence of the customers by providing them a quality product.  To make sure that the end result meets the business and user requirements.
  • 8. Purpose of Software Testing:  Software testing is really required to point out the defects and errors that were made during the development phases.  It’s essential since it makes sure of the Customer’s reliability and their satisfaction in the application.  It is very important to ensure the Quality of the product. Quality product delivered to the customers helps in gaining their confidence.  Testing is necessary in order to provide the facilities to the customers like the delivery of high quality product or software application which requires lower maintenance cost and hence results into more accurate, consistent and reliable results.
  • 9.  Testing is required for an effective performance of software application or product.  It’s important to ensure that the application should not result into any failures because it can be very expensive in the future or in the later stages of the development.
  • 10. Types of TESTING: Testing of a software is done based on 5 major classifications namely: 1. Source of test 2. Life Cycle phase 3. Goal of specific testing activity 4. Characteristics of the artifact under test 5. Test process
  • 11. Source of test:  Black box testing – is a method that examines the functionality of an application without peering into its internal structures or working. Tests are based on requirements and functionality.  Also known as Closed box Testing.
  • 12.  White box testing – is a method that tests internal structures or workings of an application, as opposed to its functionality. This testing is based on knowledge of the internal logic of an application’s code.  Also known as Glass box Testing, Clear box Testing.  Internal software and code working should be known for this type of testing. Tests are based on coverage of code statements, branches, paths, conditions.
  • 13.  Interface Testing – is performed to evaluate whether systems or components pass data and control correctly to one another.  Ad hoc Testing – is a method performed without planning and documentation, but can be applied to early scientific experimental studies.
  • 14. Life Cycle phase:  Unit Testing – is a method of testing of individual software components or modules.  Typically done by the programmer and not by testers, as it requires detailed knowledge of the internal program design and code.  Integration Testing – is a method of testing of integrated modules to verify combined functionality after integration.  Modules are typically code modules, individual applications, client and server applications on a network, etc.  This type of testing is especially relevant to client/server and distributed systems.  System Testing – Entire system is tested as per the requirements.  Black-box type testing that is based on overall requirements specifications, covers all combined parts of a system.
  • 15.  Regression Testing – Testing the application as a whole for the modification in any module or functionality. Difficult to cover all the system in regression testing so typically automation tools are used for these testing types.  Beta Testing – Final testing before releasing application for commercial purpose. It is typically done by end-users or others.
  • 16. Goal of specific testing activity:  Robustness Testing – is any quality assurance methodology focused on testing the robustness of software.  Stress Testing – Testing technique which evaluates a system or component at or beyond the limits of its specified requirements.  usually conducted by the performance engineer.  Performance Testing – is the process of determining the speed or effectiveness of a computer, network, software program or device.  usually conducted by the performance engineer.
  • 17.  Load Testing – is a performance testing to check system behaviour under load. Testing an application under heavy loads, such as testing of a web site under a range of loads to determine at what point the system’s response time degrades or fails.  usually conducted by the performance engineers.
  • 18. Test Process:  Waterfall Model – Requirement Analysis Design System Testing Coding & Unit Testing Integration & subsystem Testing Maintenance Training & Delivery Acceptance Testing
  • 19.  V- model – Requirement Analysis Design System Testing Coding Integration & subsystem Testing Maintenance Acceptance Testing Develop unit tests Unit Testing Validate requirement Develop system acceptance tests Validate design Develop integration tests
  • 20.  Agile Testing – Agile is an iterative development methodology, where requirements evolve through collaboration between the customer and self-organizing teams and agile aligns development with customer needs.
  • 21. Software Testing Life Cycle(STLC): is a testing process which is executed in a sequence, in order to meet the quality goals. It is not a single activity but it consists of many different activities which are executed to achieve a good quality product. Sequence of STLC: 1. Requirement Analysis 2. Test Planning 3. Test Case Development 4. Environment Setup 5. Test Execution 6. Test Cycle Closure
  • 22. Process Chart of STLC: Requirements Analysis Test Planning Test Case Development Environment Setup Test Execution Test Cycle Closure
  • 23. Requirement Analysis: Activities to be done:  Analyzing the SRS from the testing point of view.  Identifying the testing techniques and testing types.  Prioritizing the feature which need focused testing.  Analyzing the Automation feasibility.  Identifying the details about the testing environment where actual testing will be done. Outcomes:  Requirement Traceability Matrix.  Automation feasibility report.
  • 24. Test Planning: Activities to be done:  Estimation of testing effort.  Selection of Testing Approach.  Preparation of Test Plan, Test strategy documents.  Resource planning and assigning roles and responsibility to them.  Selection of Testing tool. Outcomes:  Test Plan document.  Test Strategy document.  Best suited Testing Approach.
  • 25. Test Case Development: Activities to be done:  Creation of test cases.  Creation of test scripts if required.  Verification of test cases and automation scripts.  Creation of Test Data in testing environment. Outcomes:  Test cases.  Test scripts (for automation if required).  Test Data.
  • 26. Environment Setup: Activities to be done:  As per the Requirement and Architecture document the list of required software and hardware is prepared.  Setting up of test environment.  Creation of test data.  Installation of build and execution of Smoke testing on it. Outcomes:  Test Environment setup is ready.  Test Data is created.  Results of Smoke testing.
  • 27. Test Execution: Activities to be done:  Execution of Test Cases.  Reporting test results.  Logging defects for the failed test cases.  Verification and retesting of the defect.  Closure of defects. Outcomes:  Test execution Report.  Updated test cases with results.  Bug Report.
  • 28. Test Cycle Closure: Activities to be done:  To evaluate the test completion on the basis of Test Coverage and Software Quality.  Documentation of the learning from the project.  Analyzing the test results to find out the distribution of severe defects.  Test Closure Report preparation. Outcomes:  Report of Test Closure.