尊敬的 微信汇率:1円 ≈ 0.046166 元 支付宝汇率:1円 ≈ 0.046257元 [退出登录]
SlideShare a Scribd company logo
Presented By :
1. HASSAM KHALIQ (040)
2. WAHEED ULLAH(077)
3. KASHIF INAM(110)
4. TANZEEM ASLAM(015)
PRESENTED TO
SIR SALMAN MIRZA SAHB
Software Testing
Strategies
Software Testing
Testing is the process of exercising a program with the specific intent of finding errors prior to
delivery to the end user.
A Strategic Approach to Testing
To perform effective testing, a software team should conduct effective
formal technical reviews
 Testing begins at the component level and work outward toward the
integration of the entire computer based system
Different testing techniques are appropriate at different points in time
Testing is conducted by the developer of the software and (for large
projects) by an independent test group
 Testing and debugging are different activities, but debugging must be
accommodated in any testing strategy
Verification and Validation
 Software testing is part of a broader group of activities called verification and validation that
are involved in software quality assurance
Verification (Are the algorithms coded correctly?)
– The set of activities that ensure that software correctly implements a specific function or
algorithm
 Validation (Does it meet user requirements?)
– The set of activities that ensure that the software that has been built is traceable to customer
requirements.
 Verification: “Are we building the product right?”
 Validation: “Are we building the right product?”
Organizing for Software
Testing
Testing should aim at "breaking" the software
 Common misconceptions – The developer of software should do no testing at all
That testers get involved with the project only when the testing steps are about to begin.
 software architecture is complete does an independent test group become involved.
The role of an independent test group (ITG) is to remove the inherent problems associated with
letting the builder test the thing that has been built. Independent testing removes the conflict of
interest that may otherwise be present.
Software testing strategy
 Unit testing
– Concentrates on each component/function of the software as implemented in the source code
Integration testing
– Focuses on the design and construction of the software architecture
 Validation testing
– Requirements are validated against the constructed software
 System testing
– The software and other system elements are tested as a whole
Criteria for Completion of
testing
when is testing completed ??
 A classic question arises every time software testing is discussed: “When are we done testing—
how do we know that we’ve tested enough?” Sadly, there is no definitive,
Answer to this question, but there are a few pragmatic responses and early attempts at
empirical guidance.
 By collecting metrics during software testing and making use of existing software reliability
models, it is possible to develop meaningful guidelines for answering the question: “When are
we done testing?”
STRATEGIC ISSUES
 Specify product requirements in a quantifiable manner long before testing commences.
State testing objectives explicitly.
 Understand the users of the software and develop a profile for each user category.
 Develop a testing plan that emphasizes “rapid cycle testing.”
Test Strategies for
Conventional Software
Unit testing :
 Focuses testing on the function or software module
Concentrates on the internal processing logic and data structures
 Is simplified when a module is designed with high cohesion
– Reduces the number of test cases
– Allows errors to be more easily predicted and uncovered
 Concentrates on critical modules and those with high cyclamate complexity when testing
resources are limited
Unit testing considerations
• Module interface
– Ensure that information flows properly into and out of the module
• Local data structures
– Ensure that data stored temporarily maintains its integrity during all steps in an algorithm execution
• Boundary conditions
– Ensure that the module operates properly at boundary values established to limit or restrict
processing
• Independent paths (basis paths)
– Paths are exercised to ensure that all statements in a module have been executed at least once
• Error handling paths
– Ensure that the algorithms respond correctly to specific error conditions
Unit test procedures
 Driver
– A simple main program that accepts test case data, passes such data to the component being
tested, and prints the returned results
 Stubs
– Serve to replace modules that are subordinate to (called by) the component to be tested
– It uses the module’s exact interface, may do minimal data manipulation, provides verification
of entry, and returns control to the module undergoing testing
 Drivers and stubs both represent testing overhead.
– Both must be written but don’t constitute part of the installed software product
Integration testing
Defined as a systematic technique for constructing the software architecture
– At the same time integration is occurring, conduct tests to uncover errors associated with
interfaces
 Objective is to take unit tested modules and build a program structure based on the prescribed
design
 Two Approaches
– Non-incremental Integration Testing
– Incremental Integration Testing
Non-incremental Integration
Testing
Uses “Big Bang” approach
 All components are combined in advance
The entire program is tested as a whole Chaos results
 Many seemingly-unrelated errors are encountered
Correction is difficult because isolation of causes is complicated
 Once a set of errors are corrected, more errors occur, and testing appears to enter an endless
loop
Incremental Integration Testing
The program is constructed and tested in small increments
 Errors are easier to isolate and correct
 Interfaces are more likely to be tested completely
A systematic test approach is applied
 Different incremental integration strategies
– Top-down integration
– Bottom-up integration
– Regression testing
– Smoke testing
Top-down Integration
Modules are integrated by moving downward through the control hierarchy, beginning with the main
module
 Subordinate modules are incorporated in two ways :
– depth-first : All modules on a major control path are integrated
– breadth-first : All modules directly subordinate at each level are integrated
 Advantages
– This approach verifies major control or decision points early in the test process
 Disadvantages
– Stubs need to be created to substitute for modules that have not been built or tested yet; this code
is later discarded
– Because stubs are used to replace lower level modules, no significant data flow can occur until
much later in the integration/testing process
Bottom-up Integration
 Integration and testing starts with the most atomic modules in the control hierarchy
Advantages
– This approach verifies low-level data processing early in the testing process
– Need for stubs is eliminated
 Disadvantages
– Driver modules need to be built to test the lower-level modules; this code is later discarded or
expanded into a full-featured version
– Drivers inherently do not contain the complete algorithms that will eventually use the services
of the lower-level modules; consequently, testing may be incomplete or more testing may be
needed later when the upper level modules are available
Comparison b/w conventional
& OO s/w Unit Testing
 In conventional software we are testing the individual units/modules…
 In object oriented software testing the class individual classes & subclasses..
 which tends to focus on the algorithmic detail of a module and the data that flow across the
module interface.
 OO software is driven by the operations encapsulated by the class and the state behavior of the
class
Validation Testing
The process of evaluating software during the development process or at the end of the
development process to determine whether it satisfies specified business requirements.
Validation Testing ensures that the product actually meets the client's needs. It can also be
defined as to demonstrate that the product fulfills its intended use when deployed on
appropriate environment.
It answers to the question, Are we building the right product?
Validation Testing - Workflow:
Validation testing can be best demonstrated using V-Model. The Software/product under test is
evaluated during this type of testing.
Activities:
Unit Testing
Integration Testing
System Testing
User Acceptance Testing
Virtual Users:
Virtual user is a common terminology used from a performance testing point of view. A Virtual
user generator enables testers to create virtual users in order to increase the user load on the
application under test.
Virtual user generator captures the requests to create a virtual user and it can read user
operations.
SYSTEM TESTING
SYSTEM TESTING is a level of software testing where a complete and integrated software is tested.
The purpose of this test is to evaluate the system's compliance with the specified requirements.
System testing is the testing of a system as a whole. End to end testing is performed to verify that all the
scenarios are working as expected.
Testing is performed using test data created by the testers.
A system as a whole is tested to check the functionality & Performance of the product.
Defects found in the testing can be fixed.
Unit System and system integration testing are types for System testing.
Types of System Testing
Functionality Testing: To make sure that functionality of product is working as per the
requirements defined, within the capabilities of the system.
Performance Testing: To make sure system’s performance under the various condition, in terms
of performance characteristics.
Usability Testing: To make sure that system is easy to use, learn and operate.
Black Box Testing
ANY QUESTIONS?
THANK YOU

More Related Content

What's hot

Software estimation
Software estimationSoftware estimation
Software estimation
Md Shakir
 
Software cost estimation
Software cost estimationSoftware cost estimation
Software cost estimation
Dr. C.V. Suresh Babu
 
Quality Attributes In Software Architecture & Design Patterns
Quality Attributes In Software Architecture & Design PatternsQuality Attributes In Software Architecture & Design Patterns
Quality Attributes In Software Architecture & Design Patterns
Gatte Ravindranath
 
Software Configuration Management (SCM)
Software Configuration Management (SCM)Software Configuration Management (SCM)
Software Configuration Management (SCM)
Er. Shiva K. Shrestha
 
White box ppt
White box pptWhite box ppt
White box ppt
Chintakunta Hariteja
 
Class based modeling
Class based modelingClass based modeling
Class based modeling
Md. Shafiuzzaman Hira
 
Software Process Models
Software Process ModelsSoftware Process Models
Software Process Models
Hassan A-j
 
Software design
Software designSoftware design
Software design
Benazir Fathima
 
Quality & Reliability in Software Engineering
Quality & Reliability in Software EngineeringQuality & Reliability in Software Engineering
Quality & Reliability in Software Engineering
SivaRamaSundar Devasubramaniam
 
Risk management(software engineering)
Risk management(software engineering)Risk management(software engineering)
Risk management(software engineering)
Priya Tomar
 
Chapter 13 software testing strategies
Chapter 13 software testing strategiesChapter 13 software testing strategies
Chapter 13 software testing strategies
SHREEHARI WADAWADAGI
 
Cohesion and coupling
Cohesion and couplingCohesion and coupling
Cohesion and coupling
Aprajita (Abbey) Singh
 
Black & White Box testing
Black & White Box testingBlack & White Box testing
Software design, software engineering
Software design, software engineeringSoftware design, software engineering
Software design, software engineering
Rupesh Vaishnav
 
Software Design and Modularity
Software Design and ModularitySoftware Design and Modularity
Software Design and Modularity
Danyal Ahmad
 
Compiler Design
Compiler DesignCompiler Design
Compiler Design
Mir Majid
 
Software Measurement and Metrics.pptx
Software Measurement and Metrics.pptxSoftware Measurement and Metrics.pptx
Software Measurement and Metrics.pptx
ubaidullah75790
 
UML
UMLUML
Extreme Programming
Extreme ProgrammingExtreme Programming
Extreme Programming
pearlcatcharro
 
File system structure
File system structureFile system structure
File system structure
sangrampatil81
 

What's hot (20)

Software estimation
Software estimationSoftware estimation
Software estimation
 
Software cost estimation
Software cost estimationSoftware cost estimation
Software cost estimation
 
Quality Attributes In Software Architecture & Design Patterns
Quality Attributes In Software Architecture & Design PatternsQuality Attributes In Software Architecture & Design Patterns
Quality Attributes In Software Architecture & Design Patterns
 
Software Configuration Management (SCM)
Software Configuration Management (SCM)Software Configuration Management (SCM)
Software Configuration Management (SCM)
 
White box ppt
White box pptWhite box ppt
White box ppt
 
Class based modeling
Class based modelingClass based modeling
Class based modeling
 
Software Process Models
Software Process ModelsSoftware Process Models
Software Process Models
 
Software design
Software designSoftware design
Software design
 
Quality & Reliability in Software Engineering
Quality & Reliability in Software EngineeringQuality & Reliability in Software Engineering
Quality & Reliability in Software Engineering
 
Risk management(software engineering)
Risk management(software engineering)Risk management(software engineering)
Risk management(software engineering)
 
Chapter 13 software testing strategies
Chapter 13 software testing strategiesChapter 13 software testing strategies
Chapter 13 software testing strategies
 
Cohesion and coupling
Cohesion and couplingCohesion and coupling
Cohesion and coupling
 
Black & White Box testing
Black & White Box testingBlack & White Box testing
Black & White Box testing
 
Software design, software engineering
Software design, software engineeringSoftware design, software engineering
Software design, software engineering
 
Software Design and Modularity
Software Design and ModularitySoftware Design and Modularity
Software Design and Modularity
 
Compiler Design
Compiler DesignCompiler Design
Compiler Design
 
Software Measurement and Metrics.pptx
Software Measurement and Metrics.pptxSoftware Measurement and Metrics.pptx
Software Measurement and Metrics.pptx
 
UML
UMLUML
UML
 
Extreme Programming
Extreme ProgrammingExtreme Programming
Extreme Programming
 
File system structure
File system structureFile system structure
File system structure
 

Similar to Software Testing Strategies ,Validation Testing and System Testing.

software engineering
software engineeringsoftware engineering
software engineering
Subhanshu Mittal
 
Testing strategies part -1
Testing strategies part -1Testing strategies part -1
Testing strategies part -1
Divya Tiwari
 
Software testing
Software testingSoftware testing
software testing strategies
software testing strategiessoftware testing strategies
software testing strategies
Hemanth Gajula
 
Software Testing
Software TestingSoftware Testing
Software Testing
Mousmi Pawar
 
Software testing
Software testingSoftware testing
Software testing
Ashu Bansal
 
Software Testing.pdf
Software Testing.pdfSoftware Testing.pdf
Software Testing.pdf
ManojKumar533913
 
Software test proposal
Software test proposalSoftware test proposal
Software test proposal
ManikandanRamanujam
 
Software testing2
Software testing2Software testing2
Software testing2
suneeth kumar
 
Software testing
Software testingSoftware testing
Software testing
Rakshitha Raviprakash
 
Software testing
Software testingSoftware testing
Software testing
Brajesh Pandey
 
Demo1ghjkl
Demo1ghjklDemo1ghjkl
Demo1ghjkl
crazyvirtue
 
Software testing
Software testingSoftware testing
Software testing
suneeth kumar
 
Software testing
Software testingSoftware testing
Software testing
YashasviSingh23
 
Softwaretestingstrategies
SoftwaretestingstrategiesSoftwaretestingstrategies
Softwaretestingstrategies
saieswar19
 
Software testing
Software testingSoftware testing
Software testing
Nitin Dhanuka
 
Software Engineering and Project Management - Software Testing + Agile Method...
Software Engineering and Project Management - Software Testing + Agile Method...Software Engineering and Project Management - Software Testing + Agile Method...
Software Engineering and Project Management - Software Testing + Agile Method...
Prakhyath Rai
 
Software testing strategies And its types
Software testing  strategies And its typesSoftware testing  strategies And its types
Software testing strategies And its types
MITULJAMANG
 
Software testing
Software testingSoftware testing
Software testing
lokareminakshi
 
Software testing
Software testingSoftware testing
Software testing
Rtr Sasi Tharan
 

Similar to Software Testing Strategies ,Validation Testing and System Testing. (20)

software engineering
software engineeringsoftware engineering
software engineering
 
Testing strategies part -1
Testing strategies part -1Testing strategies part -1
Testing strategies part -1
 
Software testing
Software testingSoftware testing
Software testing
 
software testing strategies
software testing strategiessoftware testing strategies
software testing strategies
 
Software Testing
Software TestingSoftware Testing
Software Testing
 
Software testing
Software testingSoftware testing
Software testing
 
Software Testing.pdf
Software Testing.pdfSoftware Testing.pdf
Software Testing.pdf
 
Software test proposal
Software test proposalSoftware test proposal
Software test proposal
 
Software testing2
Software testing2Software testing2
Software testing2
 
Software testing
Software testingSoftware testing
Software testing
 
Software testing
Software testingSoftware testing
Software testing
 
Demo1ghjkl
Demo1ghjklDemo1ghjkl
Demo1ghjkl
 
Software testing
Software testingSoftware testing
Software testing
 
Software testing
Software testingSoftware testing
Software testing
 
Softwaretestingstrategies
SoftwaretestingstrategiesSoftwaretestingstrategies
Softwaretestingstrategies
 
Software testing
Software testingSoftware testing
Software testing
 
Software Engineering and Project Management - Software Testing + Agile Method...
Software Engineering and Project Management - Software Testing + Agile Method...Software Engineering and Project Management - Software Testing + Agile Method...
Software Engineering and Project Management - Software Testing + Agile Method...
 
Software testing strategies And its types
Software testing  strategies And its typesSoftware testing  strategies And its types
Software testing strategies And its types
 
Software testing
Software testingSoftware testing
Software testing
 
Software testing
Software testingSoftware testing
Software testing
 

Recently uploaded

一比一原版(psu学位证书)美国匹兹堡州立大学毕业证如何办理
一比一原版(psu学位证书)美国匹兹堡州立大学毕业证如何办理一比一原版(psu学位证书)美国匹兹堡州立大学毕业证如何办理
一比一原版(psu学位证书)美国匹兹堡州立大学毕业证如何办理
nonods
 
Covid Management System Project Report.pdf
Covid Management System Project Report.pdfCovid Management System Project Report.pdf
Covid Management System Project Report.pdf
Kamal Acharya
 
Call Girls Madurai 8824825030 Escort In Madurai service 24X7
Call Girls Madurai 8824825030 Escort In Madurai service 24X7Call Girls Madurai 8824825030 Escort In Madurai service 24X7
Call Girls Madurai 8824825030 Escort In Madurai service 24X7
Poonam Singh
 
The Differences between Schedule 40 PVC Conduit Pipe and Schedule 80 PVC Conduit
The Differences between Schedule 40 PVC Conduit Pipe and Schedule 80 PVC ConduitThe Differences between Schedule 40 PVC Conduit Pipe and Schedule 80 PVC Conduit
The Differences between Schedule 40 PVC Conduit Pipe and Schedule 80 PVC Conduit
Guangdong Ctube Industry Co., Ltd.
 
Call Girls Chennai +91-8824825030 Vip Call Girls Chennai
Call Girls Chennai +91-8824825030 Vip Call Girls ChennaiCall Girls Chennai +91-8824825030 Vip Call Girls Chennai
Call Girls Chennai +91-8824825030 Vip Call Girls Chennai
paraasingh12 #V08
 
Online train ticket booking system project.pdf
Online train ticket booking system project.pdfOnline train ticket booking system project.pdf
Online train ticket booking system project.pdf
Kamal Acharya
 
Call Girls In Lucknow 🔥 +91-7014168258🔥High Profile Call Girl Lucknow
Call Girls In Lucknow 🔥 +91-7014168258🔥High Profile Call Girl LucknowCall Girls In Lucknow 🔥 +91-7014168258🔥High Profile Call Girl Lucknow
Call Girls In Lucknow 🔥 +91-7014168258🔥High Profile Call Girl Lucknow
yogita singh$A17
 
Hot Call Girls In Bangalore ✔ 9079923931 ✔ Hi I Am Divya Vip Call Girl Servic...
Hot Call Girls In Bangalore ✔ 9079923931 ✔ Hi I Am Divya Vip Call Girl Servic...Hot Call Girls In Bangalore ✔ 9079923931 ✔ Hi I Am Divya Vip Call Girl Servic...
Hot Call Girls In Bangalore ✔ 9079923931 ✔ Hi I Am Divya Vip Call Girl Servic...
Banerescorts
 
paper relate Chozhavendhan et al. 2020.pdf
paper relate Chozhavendhan et al. 2020.pdfpaper relate Chozhavendhan et al. 2020.pdf
paper relate Chozhavendhan et al. 2020.pdf
ShurooqTaib
 
Particle Swarm Optimization–Long Short-Term Memory based Channel Estimation w...
Particle Swarm Optimization–Long Short-Term Memory based Channel Estimation w...Particle Swarm Optimization–Long Short-Term Memory based Channel Estimation w...
Particle Swarm Optimization–Long Short-Term Memory based Channel Estimation w...
IJCNCJournal
 
Update 40 models( Solar Cell ) in SPICE PARK(JUL2024)
Update 40 models( Solar Cell ) in SPICE PARK(JUL2024)Update 40 models( Solar Cell ) in SPICE PARK(JUL2024)
Update 40 models( Solar Cell ) in SPICE PARK(JUL2024)
Tsuyoshi Horigome
 
INTRODUCTION TO ARTIFICIAL INTELLIGENCE BASIC
INTRODUCTION TO ARTIFICIAL INTELLIGENCE BASICINTRODUCTION TO ARTIFICIAL INTELLIGENCE BASIC
INTRODUCTION TO ARTIFICIAL INTELLIGENCE BASIC
GOKULKANNANMMECLECTC
 
CSP_Study - Notes (Paul McNeill) 2017.pdf
CSP_Study - Notes (Paul McNeill) 2017.pdfCSP_Study - Notes (Paul McNeill) 2017.pdf
CSP_Study - Notes (Paul McNeill) 2017.pdf
Ismail Sultan
 
🚺ANJALI MEHTA High Profile Call Girls Ahmedabad 💯Call Us 🔝 9352988975 🔝💃Top C...
🚺ANJALI MEHTA High Profile Call Girls Ahmedabad 💯Call Us 🔝 9352988975 🔝💃Top C...🚺ANJALI MEHTA High Profile Call Girls Ahmedabad 💯Call Us 🔝 9352988975 🔝💃Top C...
🚺ANJALI MEHTA High Profile Call Girls Ahmedabad 💯Call Us 🔝 9352988975 🔝💃Top C...
dulbh kashyap
 
Technological Innovation Management And Entrepreneurship-1.pdf
Technological Innovation Management And Entrepreneurship-1.pdfTechnological Innovation Management And Entrepreneurship-1.pdf
Technological Innovation Management And Entrepreneurship-1.pdf
tanujaharish2
 
AN INTRODUCTION OF AI & SEARCHING TECHIQUES
AN INTRODUCTION OF AI & SEARCHING TECHIQUESAN INTRODUCTION OF AI & SEARCHING TECHIQUES
AN INTRODUCTION OF AI & SEARCHING TECHIQUES
drshikhapandey2022
 
FUNDAMENTALS OF MECHANICAL ENGINEERING.pdf
FUNDAMENTALS OF MECHANICAL ENGINEERING.pdfFUNDAMENTALS OF MECHANICAL ENGINEERING.pdf
FUNDAMENTALS OF MECHANICAL ENGINEERING.pdf
EMERSON EDUARDO RODRIGUES
 
🔥Independent Call Girls In Pune 💯Call Us 🔝 7014168258 🔝💃Independent Pune Esco...
🔥Independent Call Girls In Pune 💯Call Us 🔝 7014168258 🔝💃Independent Pune Esco...🔥Independent Call Girls In Pune 💯Call Us 🔝 7014168258 🔝💃Independent Pune Esco...
🔥Independent Call Girls In Pune 💯Call Us 🔝 7014168258 🔝💃Independent Pune Esco...
AK47
 
College Call Girls Kolkata 🔥 7014168258 🔥 Real Fun With Sexual Girl Available...
College Call Girls Kolkata 🔥 7014168258 🔥 Real Fun With Sexual Girl Available...College Call Girls Kolkata 🔥 7014168258 🔥 Real Fun With Sexual Girl Available...
College Call Girls Kolkata 🔥 7014168258 🔥 Real Fun With Sexual Girl Available...
Ak47
 
Mahipalpur Call Girls Delhi 🔥 9711199012 ❄- Pick Your Dream Call Girls with 1...
Mahipalpur Call Girls Delhi 🔥 9711199012 ❄- Pick Your Dream Call Girls with 1...Mahipalpur Call Girls Delhi 🔥 9711199012 ❄- Pick Your Dream Call Girls with 1...
Mahipalpur Call Girls Delhi 🔥 9711199012 ❄- Pick Your Dream Call Girls with 1...
simrangupta87541
 

Recently uploaded (20)

一比一原版(psu学位证书)美国匹兹堡州立大学毕业证如何办理
一比一原版(psu学位证书)美国匹兹堡州立大学毕业证如何办理一比一原版(psu学位证书)美国匹兹堡州立大学毕业证如何办理
一比一原版(psu学位证书)美国匹兹堡州立大学毕业证如何办理
 
Covid Management System Project Report.pdf
Covid Management System Project Report.pdfCovid Management System Project Report.pdf
Covid Management System Project Report.pdf
 
Call Girls Madurai 8824825030 Escort In Madurai service 24X7
Call Girls Madurai 8824825030 Escort In Madurai service 24X7Call Girls Madurai 8824825030 Escort In Madurai service 24X7
Call Girls Madurai 8824825030 Escort In Madurai service 24X7
 
The Differences between Schedule 40 PVC Conduit Pipe and Schedule 80 PVC Conduit
The Differences between Schedule 40 PVC Conduit Pipe and Schedule 80 PVC ConduitThe Differences between Schedule 40 PVC Conduit Pipe and Schedule 80 PVC Conduit
The Differences between Schedule 40 PVC Conduit Pipe and Schedule 80 PVC Conduit
 
Call Girls Chennai +91-8824825030 Vip Call Girls Chennai
Call Girls Chennai +91-8824825030 Vip Call Girls ChennaiCall Girls Chennai +91-8824825030 Vip Call Girls Chennai
Call Girls Chennai +91-8824825030 Vip Call Girls Chennai
 
Online train ticket booking system project.pdf
Online train ticket booking system project.pdfOnline train ticket booking system project.pdf
Online train ticket booking system project.pdf
 
Call Girls In Lucknow 🔥 +91-7014168258🔥High Profile Call Girl Lucknow
Call Girls In Lucknow 🔥 +91-7014168258🔥High Profile Call Girl LucknowCall Girls In Lucknow 🔥 +91-7014168258🔥High Profile Call Girl Lucknow
Call Girls In Lucknow 🔥 +91-7014168258🔥High Profile Call Girl Lucknow
 
Hot Call Girls In Bangalore ✔ 9079923931 ✔ Hi I Am Divya Vip Call Girl Servic...
Hot Call Girls In Bangalore ✔ 9079923931 ✔ Hi I Am Divya Vip Call Girl Servic...Hot Call Girls In Bangalore ✔ 9079923931 ✔ Hi I Am Divya Vip Call Girl Servic...
Hot Call Girls In Bangalore ✔ 9079923931 ✔ Hi I Am Divya Vip Call Girl Servic...
 
paper relate Chozhavendhan et al. 2020.pdf
paper relate Chozhavendhan et al. 2020.pdfpaper relate Chozhavendhan et al. 2020.pdf
paper relate Chozhavendhan et al. 2020.pdf
 
Particle Swarm Optimization–Long Short-Term Memory based Channel Estimation w...
Particle Swarm Optimization–Long Short-Term Memory based Channel Estimation w...Particle Swarm Optimization–Long Short-Term Memory based Channel Estimation w...
Particle Swarm Optimization–Long Short-Term Memory based Channel Estimation w...
 
Update 40 models( Solar Cell ) in SPICE PARK(JUL2024)
Update 40 models( Solar Cell ) in SPICE PARK(JUL2024)Update 40 models( Solar Cell ) in SPICE PARK(JUL2024)
Update 40 models( Solar Cell ) in SPICE PARK(JUL2024)
 
INTRODUCTION TO ARTIFICIAL INTELLIGENCE BASIC
INTRODUCTION TO ARTIFICIAL INTELLIGENCE BASICINTRODUCTION TO ARTIFICIAL INTELLIGENCE BASIC
INTRODUCTION TO ARTIFICIAL INTELLIGENCE BASIC
 
CSP_Study - Notes (Paul McNeill) 2017.pdf
CSP_Study - Notes (Paul McNeill) 2017.pdfCSP_Study - Notes (Paul McNeill) 2017.pdf
CSP_Study - Notes (Paul McNeill) 2017.pdf
 
🚺ANJALI MEHTA High Profile Call Girls Ahmedabad 💯Call Us 🔝 9352988975 🔝💃Top C...
🚺ANJALI MEHTA High Profile Call Girls Ahmedabad 💯Call Us 🔝 9352988975 🔝💃Top C...🚺ANJALI MEHTA High Profile Call Girls Ahmedabad 💯Call Us 🔝 9352988975 🔝💃Top C...
🚺ANJALI MEHTA High Profile Call Girls Ahmedabad 💯Call Us 🔝 9352988975 🔝💃Top C...
 
Technological Innovation Management And Entrepreneurship-1.pdf
Technological Innovation Management And Entrepreneurship-1.pdfTechnological Innovation Management And Entrepreneurship-1.pdf
Technological Innovation Management And Entrepreneurship-1.pdf
 
AN INTRODUCTION OF AI & SEARCHING TECHIQUES
AN INTRODUCTION OF AI & SEARCHING TECHIQUESAN INTRODUCTION OF AI & SEARCHING TECHIQUES
AN INTRODUCTION OF AI & SEARCHING TECHIQUES
 
FUNDAMENTALS OF MECHANICAL ENGINEERING.pdf
FUNDAMENTALS OF MECHANICAL ENGINEERING.pdfFUNDAMENTALS OF MECHANICAL ENGINEERING.pdf
FUNDAMENTALS OF MECHANICAL ENGINEERING.pdf
 
🔥Independent Call Girls In Pune 💯Call Us 🔝 7014168258 🔝💃Independent Pune Esco...
🔥Independent Call Girls In Pune 💯Call Us 🔝 7014168258 🔝💃Independent Pune Esco...🔥Independent Call Girls In Pune 💯Call Us 🔝 7014168258 🔝💃Independent Pune Esco...
🔥Independent Call Girls In Pune 💯Call Us 🔝 7014168258 🔝💃Independent Pune Esco...
 
College Call Girls Kolkata 🔥 7014168258 🔥 Real Fun With Sexual Girl Available...
College Call Girls Kolkata 🔥 7014168258 🔥 Real Fun With Sexual Girl Available...College Call Girls Kolkata 🔥 7014168258 🔥 Real Fun With Sexual Girl Available...
College Call Girls Kolkata 🔥 7014168258 🔥 Real Fun With Sexual Girl Available...
 
Mahipalpur Call Girls Delhi 🔥 9711199012 ❄- Pick Your Dream Call Girls with 1...
Mahipalpur Call Girls Delhi 🔥 9711199012 ❄- Pick Your Dream Call Girls with 1...Mahipalpur Call Girls Delhi 🔥 9711199012 ❄- Pick Your Dream Call Girls with 1...
Mahipalpur Call Girls Delhi 🔥 9711199012 ❄- Pick Your Dream Call Girls with 1...
 

Software Testing Strategies ,Validation Testing and System Testing.

  • 1. Presented By : 1. HASSAM KHALIQ (040) 2. WAHEED ULLAH(077) 3. KASHIF INAM(110) 4. TANZEEM ASLAM(015) PRESENTED TO SIR SALMAN MIRZA SAHB
  • 3. Software Testing Testing is the process of exercising a program with the specific intent of finding errors prior to delivery to the end user.
  • 4.
  • 5. A Strategic Approach to Testing To perform effective testing, a software team should conduct effective formal technical reviews  Testing begins at the component level and work outward toward the integration of the entire computer based system Different testing techniques are appropriate at different points in time Testing is conducted by the developer of the software and (for large projects) by an independent test group  Testing and debugging are different activities, but debugging must be accommodated in any testing strategy
  • 6. Verification and Validation  Software testing is part of a broader group of activities called verification and validation that are involved in software quality assurance Verification (Are the algorithms coded correctly?) – The set of activities that ensure that software correctly implements a specific function or algorithm  Validation (Does it meet user requirements?) – The set of activities that ensure that the software that has been built is traceable to customer requirements.  Verification: “Are we building the product right?”  Validation: “Are we building the right product?”
  • 7.
  • 8.
  • 9. Organizing for Software Testing Testing should aim at "breaking" the software  Common misconceptions – The developer of software should do no testing at all That testers get involved with the project only when the testing steps are about to begin.  software architecture is complete does an independent test group become involved. The role of an independent test group (ITG) is to remove the inherent problems associated with letting the builder test the thing that has been built. Independent testing removes the conflict of interest that may otherwise be present.
  • 10. Software testing strategy  Unit testing – Concentrates on each component/function of the software as implemented in the source code Integration testing – Focuses on the design and construction of the software architecture  Validation testing – Requirements are validated against the constructed software  System testing – The software and other system elements are tested as a whole
  • 11. Criteria for Completion of testing when is testing completed ??  A classic question arises every time software testing is discussed: “When are we done testing— how do we know that we’ve tested enough?” Sadly, there is no definitive, Answer to this question, but there are a few pragmatic responses and early attempts at empirical guidance.  By collecting metrics during software testing and making use of existing software reliability models, it is possible to develop meaningful guidelines for answering the question: “When are we done testing?”
  • 12. STRATEGIC ISSUES  Specify product requirements in a quantifiable manner long before testing commences. State testing objectives explicitly.  Understand the users of the software and develop a profile for each user category.  Develop a testing plan that emphasizes “rapid cycle testing.”
  • 13. Test Strategies for Conventional Software Unit testing :  Focuses testing on the function or software module Concentrates on the internal processing logic and data structures  Is simplified when a module is designed with high cohesion – Reduces the number of test cases – Allows errors to be more easily predicted and uncovered  Concentrates on critical modules and those with high cyclamate complexity when testing resources are limited
  • 14. Unit testing considerations • Module interface – Ensure that information flows properly into and out of the module • Local data structures – Ensure that data stored temporarily maintains its integrity during all steps in an algorithm execution • Boundary conditions – Ensure that the module operates properly at boundary values established to limit or restrict processing • Independent paths (basis paths) – Paths are exercised to ensure that all statements in a module have been executed at least once • Error handling paths – Ensure that the algorithms respond correctly to specific error conditions
  • 15.
  • 16. Unit test procedures  Driver – A simple main program that accepts test case data, passes such data to the component being tested, and prints the returned results  Stubs – Serve to replace modules that are subordinate to (called by) the component to be tested – It uses the module’s exact interface, may do minimal data manipulation, provides verification of entry, and returns control to the module undergoing testing  Drivers and stubs both represent testing overhead. – Both must be written but don’t constitute part of the installed software product
  • 17.
  • 18. Integration testing Defined as a systematic technique for constructing the software architecture – At the same time integration is occurring, conduct tests to uncover errors associated with interfaces  Objective is to take unit tested modules and build a program structure based on the prescribed design  Two Approaches – Non-incremental Integration Testing – Incremental Integration Testing
  • 19. Non-incremental Integration Testing Uses “Big Bang” approach  All components are combined in advance The entire program is tested as a whole Chaos results  Many seemingly-unrelated errors are encountered Correction is difficult because isolation of causes is complicated  Once a set of errors are corrected, more errors occur, and testing appears to enter an endless loop
  • 20. Incremental Integration Testing The program is constructed and tested in small increments  Errors are easier to isolate and correct  Interfaces are more likely to be tested completely A systematic test approach is applied  Different incremental integration strategies – Top-down integration – Bottom-up integration – Regression testing – Smoke testing
  • 21. Top-down Integration Modules are integrated by moving downward through the control hierarchy, beginning with the main module  Subordinate modules are incorporated in two ways : – depth-first : All modules on a major control path are integrated – breadth-first : All modules directly subordinate at each level are integrated  Advantages – This approach verifies major control or decision points early in the test process  Disadvantages – Stubs need to be created to substitute for modules that have not been built or tested yet; this code is later discarded – Because stubs are used to replace lower level modules, no significant data flow can occur until much later in the integration/testing process
  • 22. Bottom-up Integration  Integration and testing starts with the most atomic modules in the control hierarchy Advantages – This approach verifies low-level data processing early in the testing process – Need for stubs is eliminated  Disadvantages – Driver modules need to be built to test the lower-level modules; this code is later discarded or expanded into a full-featured version – Drivers inherently do not contain the complete algorithms that will eventually use the services of the lower-level modules; consequently, testing may be incomplete or more testing may be needed later when the upper level modules are available
  • 23. Comparison b/w conventional & OO s/w Unit Testing  In conventional software we are testing the individual units/modules…  In object oriented software testing the class individual classes & subclasses..  which tends to focus on the algorithmic detail of a module and the data that flow across the module interface.  OO software is driven by the operations encapsulated by the class and the state behavior of the class
  • 24. Validation Testing The process of evaluating software during the development process or at the end of the development process to determine whether it satisfies specified business requirements. Validation Testing ensures that the product actually meets the client's needs. It can also be defined as to demonstrate that the product fulfills its intended use when deployed on appropriate environment. It answers to the question, Are we building the right product?
  • 25. Validation Testing - Workflow: Validation testing can be best demonstrated using V-Model. The Software/product under test is evaluated during this type of testing. Activities: Unit Testing Integration Testing System Testing User Acceptance Testing
  • 26. Virtual Users: Virtual user is a common terminology used from a performance testing point of view. A Virtual user generator enables testers to create virtual users in order to increase the user load on the application under test. Virtual user generator captures the requests to create a virtual user and it can read user operations.
  • 27. SYSTEM TESTING SYSTEM TESTING is a level of software testing where a complete and integrated software is tested. The purpose of this test is to evaluate the system's compliance with the specified requirements. System testing is the testing of a system as a whole. End to end testing is performed to verify that all the scenarios are working as expected. Testing is performed using test data created by the testers. A system as a whole is tested to check the functionality & Performance of the product. Defects found in the testing can be fixed. Unit System and system integration testing are types for System testing.
  • 28. Types of System Testing Functionality Testing: To make sure that functionality of product is working as per the requirements defined, within the capabilities of the system. Performance Testing: To make sure system’s performance under the various condition, in terms of performance characteristics. Usability Testing: To make sure that system is easy to use, learn and operate.
  翻译: