SlideShare a Scribd company logo
Learn Software Testing
With
TechPartnerz
Session 2
http://www.techpartnerz.com
Your Partner for Professional Successhttp://www.techpartnerz.com
Test Phases.
Requirements
Review
Design
Review
Code
Walkthrough
Code
Inspection
Integration
Testing
Unit
Testing
System
Testing
Performance
Testing
Alpha
Testing
User Acceptance
Testing
Installation
Testing
Beta
Testing
Your Partner for Professional Successhttp://www.techpartnerz.com
Formal Technical Review’s (FTR)
The focus of FTR is on a work product (e.g. Requirements
document, Code etc.). After the work product is developed, the
Project Leader calls for a Review. The work product is distributed
to the personnel who involves in the review. The main audience
for the review should be the Project Manager, Project Leader and
the Producer of the work product.
Major reviews include the following:
1. Requirements Review.
2. Design Review.
3. Code Review.
Test Phases and Definitions
Your Partner for Professional Successhttp://www.techpartnerz.com
Unit Testing
Goal of Unit testing is to uncover defects using formal techniques
like Boundary Value Analysis (BVA), Equivalence Partitioning,
and Error Guessing. Defects and deviations in Date formats,
Special requirements in input conditions (for example Text box
where only numeric or alphabets should be entered), selection
based on Combo Box’s, List Box’s, Option buttons, Check
Box’s would be identified during the Unit Testing phase.
Integration Testing
Integration testing is a systematic technique for constructing the
program structure while at the same time conducting tests to
uncover errors associated with interfacing. The objective is to
take unit tested components and build a program structure
that has been dictated by design.
Usually, the following methods of Integration testing are followed:
1. Top-down Integration approach.
2. Bottom-up Integration approach.
Test Phases and Definitions
Your Partner for Professional Successhttp://www.techpartnerz.com
Top-down Integration
Top-down integration testing is an incremental approach to
construction of program structure. Modules are integrated by
moving downward through the control hierarchy, beginning
with the main control module. Modules subordinate to the main
control module are incorporated into the structure in either a
depth-first or breadth-first manner.
The Integration process is performed in a series of five steps:
1. The main control module is used as a test driver and stubs are
substituted for all components directly subordinate to the main
control module.
2. Depending on the integration approach selected subordinate
stubs are replaced one at a time with actual components.
3. Tests are conducted as each component is integrated.
4. On completion of each set of tests, another stub is replaced
with the real component.
5. Regression testing may be conducted to ensure that new
errors have not been introduced.
Test Phases and Definitions
Your Partner for Professional Successhttp://www.techpartnerz.com
Bottom-up Integration
Button-up integration testing begins construction and testing with
atomic modules (i.e. components at the lowest levels in the
program structure). Because components are integrated from
the button up, processing required for components
subordinate to a given level is always available and the need
for stubs is eliminated.
A Bottom-up integration strategy may be implemented with the
following steps:
1. Low level components are combined into clusters that perform
a specific software sub function.
2. A driver is written to coordinate test case input and output.
3. The cluster is tested.
4. Drivers are removed and clusters are combined moving
upward in the program structure.
Test Phases and Definitions
Your Partner for Professional Successhttp://www.techpartnerz.com
System Testing
System testing is a series of different tests whose primary
purpose is to fully exercise the computer based system.
Although each test has a different purpose, all work to verify
that system elements have been properly integrated and
perform allocated functions.
The following tests can be categorized under System testing:
1. Recovery Testing.
2. Security Testing.
3. Stress Testing.
4. Performance Testing.
Recovery Testing
Recovery testing is a system test that focuses the software to fall in a
variety of ways and verifies that recovery is properly performed. If
recovery is automatic, reinitialization, checkpointing mechanisms, data
recovery and restart are evaluated for correctness. If recovery requires
human intervention, the mean-time-to-repair (MTTR) is evaluated to
determine whether it is within acceptable limits.
Test Phases and Definitions
Your Partner for Professional Successhttp://www.techpartnerz.com
Security Testing
Security testing attempts to verify that protection mechanisms built into a
system will, in fact, protect it from improper penetration. During
Security testing, password cracking, unauthorized entry into the
software, network security are all taken into consideration.
Stress Testing
Stress testing executes a system in a manner that demands resources in
abnormal quantity, frequency, or volume. The following types of tests
may be conducted during stress testing:
1. Special tests may be designed that generate ten interrupts per
second, when one or two is the average rate.
2. Input data rates may be increases by an order of magnitude to
determine how input functions will respond.
3. Test Cases that require maximum memory or other resources.
4. Test Cases that may cause excessive hunting for disk-resident data.
5. Test Cases that my cause thrashing in a virtual operating system.
Test Phases and Definitions
Your Partner for Professional Successhttp://www.techpartnerz.com
Performance Testing
Performance tests are coupled with stress testing and usually
require both hardware and software instrumentation.
Regression Testing
Regression testing is the re-execution of some subset of tests that have
already been conducted to ensure that changes have not
propagated unintended side affects.
Regression may be conducted manually, by re-executing a subset of al
test cases or using automated capture/playback tools.
The Regression test suit contains three different classes of test cases:
• A representative sample of tests that will exercise all software
functions.
• Additional tests that focus on software functions that are likely to be
affected by the change.
• Tests that focus on the software components that have been
changed.
Test Phases and Definitions
Your Partner for Professional Successhttp://www.techpartnerz.com
Alpha Testing
The Alpha testing is conducted at the developer sites and in a
controlled environment by the end-user of the software.
User Acceptance Testing
User Acceptance testing occurs just before the software is
released to the customer. The end-users along with the
developers perform the User Acceptance Testing with a certain
set of test cases and typical scenarios.
Beta Testing
The Beta testing is conducted at one or more customer sites by
the end-user of the software. The beta test is a live application of
the software in an environment that cannot be controlled by the
developer.
Test Phases and Definitions
Your Partner for Professional Successhttp://www.techpartnerz.com
Metrics are the most important responsibility of the Test Team.
Metrics allow for deeper understanding of the performance of the
application and its behavior. The fine tuning of the application can
be enhanced only with metrics. In a typical QA process, there are
many metrics which provide information.
The following can be regarded as the fundamental metric:
 Functional or Test Coverage Metrics.
 Software Release Metrics.
 Software Maturity Metrics.
 Reliability Metrics.
 Mean Time To First Failure (MTTFF).
 Mean Time Between Failures (MTBF).
 Mean Time To Repair (MTTR).
Metrics.
Your Partner for Professional Successhttp://www.techpartnerz.com
Functional or Test Coverage Metric.
It can be used to measure test coverage prior to software delivery. It provides a
measure of the percentage of the software tested at any point during testing.
It is calculated as follows:
Function Test Coverage = FE/FT
Where,
FE is the number of test requirements that are covered by test cases that were
executed against the software
FT is the total number of test requirements
Software Release Metrics
The software is ready for release when:
1. It has been tested with a test suite that provides 100% functional coverage, 80%
branch coverage, and 100% procedure coverage.
2. There are no level 1 or 2 severity defects.
3. The defect finding rate is less than 40 new defects per 1000 hours of testing
4. Stress testing, configuration testing, installation testing, Naïve user testing,
usability testing, and sanity testing have been completed
Metrics.
Your Partner for Professional Successhttp://www.techpartnerz.com
Software Maturity Metric
Software Maturity Index is that which can be used to determine the
readiness for release of a software system. This index is especially
useful for assessing release readiness when changes, additions, or
deletions are made to existing software systems. It also provides an
historical index of the impact of changes. It is calculated as follows:
SMI = Mt - ( Fa + Fc + Fd)/Mt
Where
SMI is the Software Maturity Index value
Mt is the number of software functions/modules in the current release
Fc is the number of functions/modules that contain changes from the
previous release
Fa is the number of functions/modules that contain additions to the
previous release
Fd is the number of functions/modules that are deleted from the
previous release
Metrics.
Your Partner for Professional Successhttp://www.techpartnerz.com
Reliability Metrics
Reliability is calculated as follows:
Reliability = 1 - Number of errors (actual or predicted)/Total number of
lines of executable code
This reliability value is calculated for the number of errors during a
specified time interval.
Three other metrics can be calculated during extended testing or after the
system is in production. They are:
MTTFF (Mean Time to First Failure)
MTTFF = The number of time intervals the system is operable until its first
failure (functional failure only).
MTBF (Mean Time Between Failures)
MTBF = Sum of the time intervals the system is operable
MTTR (Mean Time To Repair)
MTTR = sum of the time intervals required to repair the system
The number of repairs during the time period
Metrics.
Your Partner for Professional Successhttp://www.techpartnerz.com
End of session 2
Your Partner for Professional Successhttp://www.techpartnerz.com
About TechPartnerz
TechPartnerz is an IIT NIT alumni company providing
end to end IT training solutions to Corporates, working
professionals and Freshers
TechPartnerz provides certification training programs for
ITIL-Foundation, ITIL-Intermediate, PRINCE2-Foundation,
PRINCE2-Practitioner, COBIT 5, Cloud Computing etc
Our Software Training Portfolio includes training on QTP,
Selenium, Loadrunner, Jmeter, SoapUI etc.
Your Partner for Professional Successhttp://www.techpartnerz.com
Thank You
For any queries feel free to contact TechPartnerz
info@techpartnerz.com
Follow TechPartnerz on facebook, Linkedin, twitter

More Related Content

PDF
Requirements Based Testing
PPTX
Software testing strategies
DOC
software engineering
PPTX
Ppt 2 testing throughout the software life cycle
PPTX
Fundamental test process
PDF
PPTX
Fundamental test process
PPTX
Gl istqb testing fundamentals
Requirements Based Testing
Software testing strategies
software engineering
Ppt 2 testing throughout the software life cycle
Fundamental test process
Fundamental test process
Gl istqb testing fundamentals

What's hot (20)

PPTX
System testing
PDF
Software reliability
PPT
Object oriented sad 6
PDF
Fundamentals of software testing
PPTX
Software Testing
PPT
Role+Of+Testing+In+Sdlc
DOC
Navin Latest
PPTX
Software Testing Fundamentals | Basics Of Software Testing
PPTX
Software testing tools and its taxonomy
PPTX
Software testing introduction
PPTX
Software Reliability Testing Training Crash Course - Tonex Training
PPTX
FUNDAMENTAL TEST PROCESS
PPT
System testing ppt
PPTX
Phases of a formal review
DOC
Testing terms & definitions
PPTX
Fundamentals of software testing
PDF
Software testing methods, levels and types
PPTX
System testing
DOCX
System testing
System testing
Software reliability
Object oriented sad 6
Fundamentals of software testing
Software Testing
Role+Of+Testing+In+Sdlc
Navin Latest
Software Testing Fundamentals | Basics Of Software Testing
Software testing tools and its taxonomy
Software testing introduction
Software Reliability Testing Training Crash Course - Tonex Training
FUNDAMENTAL TEST PROCESS
System testing ppt
Phases of a formal review
Testing terms & definitions
Fundamentals of software testing
Software testing methods, levels and types
System testing
System testing
Ad

Viewers also liked (20)

PPT
Learn software testing with tech partnerz 1
PPT
Learn software testing with tech partnerz 3
PPT
Kom ef-dlm-diklat
PPTX
My Evaluation of My Music Magazine
PPTX
Software Testing
DOC
Sr. QA Eng. with 8.2+ Yrs of Exp.in ERP_Manual_ Functional _System_Integrat...
PPT
Packaging testing to increase package sustainability
PPT
Gray box testing
PPTX
Overview of Software QA and What is Software Quality
PPTX
White box black box & gray box testing
PDF
Web Development using ASP.NET MVC at HEC
PPTX
All you need to know about regression testing | David Tzemach
PPT
Performance Testing With Jmeter
PPTX
An Introduction to Performance Testing
PPT
Software quality
PPTX
Types of testing
PPTX
An Overview of User Acceptance Testing (UAT)
PPTX
Types of tests and types of testing
PPTX
Basic concepts of QA and QC
PDF
Quality Assurance in SDLC
Learn software testing with tech partnerz 1
Learn software testing with tech partnerz 3
Kom ef-dlm-diklat
My Evaluation of My Music Magazine
Software Testing
Sr. QA Eng. with 8.2+ Yrs of Exp.in ERP_Manual_ Functional _System_Integrat...
Packaging testing to increase package sustainability
Gray box testing
Overview of Software QA and What is Software Quality
White box black box & gray box testing
Web Development using ASP.NET MVC at HEC
All you need to know about regression testing | David Tzemach
Performance Testing With Jmeter
An Introduction to Performance Testing
Software quality
Types of testing
An Overview of User Acceptance Testing (UAT)
Types of tests and types of testing
Basic concepts of QA and QC
Quality Assurance in SDLC
Ad

Similar to Learn software testing with tech partnerz 2 (20)

PPTX
Software testing
PPT
testing strategies and tactics
PPTX
PPT
software testing
PPT
Manual testing - Introduction to Manual Software testing
PPT
Manual testing visonia
PPTX
SE-Unit 4_software testing stretagy.pptx
PPTX
Software testing
PPTX
Software testing
PPTX
Software Engg - Wk 11 - Lec 12 - Software_Testing Part-1.pptx
PPS
Test Process
PPTX
Testing strategies part -1
PPTX
software testing.pptx
PPTX
Softwareengineering-5-3-Testing_conven_softw.pptx
PPT
Unit 4 chapter 22 - testing strategies.ppt
PPT
AutoTest.ppt
PPT
6 Weeks Industrial Training in Testing
PPTX
Software Testing Strategies ,Validation Testing and System Testing.
PPTX
Testing ppt
PPTX
Software Testing Strategies
Software testing
testing strategies and tactics
software testing
Manual testing - Introduction to Manual Software testing
Manual testing visonia
SE-Unit 4_software testing stretagy.pptx
Software testing
Software testing
Software Engg - Wk 11 - Lec 12 - Software_Testing Part-1.pptx
Test Process
Testing strategies part -1
software testing.pptx
Softwareengineering-5-3-Testing_conven_softw.pptx
Unit 4 chapter 22 - testing strategies.ppt
AutoTest.ppt
6 Weeks Industrial Training in Testing
Software Testing Strategies ,Validation Testing and System Testing.
Testing ppt
Software Testing Strategies

Recently uploaded (20)

PPTX
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
PDF
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
PDF
Unlocking AI with Model Context Protocol (MCP)
PPTX
Programs and apps: productivity, graphics, security and other tools
PPTX
MYSQL Presentation for SQL database connectivity
PDF
Approach and Philosophy of On baking technology
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PDF
cuic standard and advanced reporting.pdf
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
PDF
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
PDF
Advanced methodologies resolving dimensionality complications for autism neur...
PDF
Machine learning based COVID-19 study performance prediction
PDF
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
PPTX
Big Data Technologies - Introduction.pptx
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PDF
NewMind AI Weekly Chronicles - August'25 Week I
PPTX
sap open course for s4hana steps from ECC to s4
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
Mobile App Security Testing_ A Comprehensive Guide.pdf
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
Unlocking AI with Model Context Protocol (MCP)
Programs and apps: productivity, graphics, security and other tools
MYSQL Presentation for SQL database connectivity
Approach and Philosophy of On baking technology
Dropbox Q2 2025 Financial Results & Investor Presentation
cuic standard and advanced reporting.pdf
Diabetes mellitus diagnosis method based random forest with bat algorithm
Building Integrated photovoltaic BIPV_UPV.pdf
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
Advanced methodologies resolving dimensionality complications for autism neur...
Machine learning based COVID-19 study performance prediction
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
Big Data Technologies - Introduction.pptx
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
Reach Out and Touch Someone: Haptics and Empathic Computing
NewMind AI Weekly Chronicles - August'25 Week I
sap open course for s4hana steps from ECC to s4

Learn software testing with tech partnerz 2

  • 1. Learn Software Testing With TechPartnerz Session 2 http://www.techpartnerz.com
  • 2. Your Partner for Professional Successhttp://www.techpartnerz.com Test Phases. Requirements Review Design Review Code Walkthrough Code Inspection Integration Testing Unit Testing System Testing Performance Testing Alpha Testing User Acceptance Testing Installation Testing Beta Testing
  • 3. Your Partner for Professional Successhttp://www.techpartnerz.com Formal Technical Review’s (FTR) The focus of FTR is on a work product (e.g. Requirements document, Code etc.). After the work product is developed, the Project Leader calls for a Review. The work product is distributed to the personnel who involves in the review. The main audience for the review should be the Project Manager, Project Leader and the Producer of the work product. Major reviews include the following: 1. Requirements Review. 2. Design Review. 3. Code Review. Test Phases and Definitions
  • 4. Your Partner for Professional Successhttp://www.techpartnerz.com Unit Testing Goal of Unit testing is to uncover defects using formal techniques like Boundary Value Analysis (BVA), Equivalence Partitioning, and Error Guessing. Defects and deviations in Date formats, Special requirements in input conditions (for example Text box where only numeric or alphabets should be entered), selection based on Combo Box’s, List Box’s, Option buttons, Check Box’s would be identified during the Unit Testing phase. Integration Testing Integration testing is a systematic technique for constructing the program structure while at the same time conducting tests to uncover errors associated with interfacing. The objective is to take unit tested components and build a program structure that has been dictated by design. Usually, the following methods of Integration testing are followed: 1. Top-down Integration approach. 2. Bottom-up Integration approach. Test Phases and Definitions
  • 5. Your Partner for Professional Successhttp://www.techpartnerz.com Top-down Integration Top-down integration testing is an incremental approach to construction of program structure. Modules are integrated by moving downward through the control hierarchy, beginning with the main control module. Modules subordinate to the main control module are incorporated into the structure in either a depth-first or breadth-first manner. The Integration process is performed in a series of five steps: 1. The main control module is used as a test driver and stubs are substituted for all components directly subordinate to the main control module. 2. Depending on the integration approach selected subordinate stubs are replaced one at a time with actual components. 3. Tests are conducted as each component is integrated. 4. On completion of each set of tests, another stub is replaced with the real component. 5. Regression testing may be conducted to ensure that new errors have not been introduced. Test Phases and Definitions
  • 6. Your Partner for Professional Successhttp://www.techpartnerz.com Bottom-up Integration Button-up integration testing begins construction and testing with atomic modules (i.e. components at the lowest levels in the program structure). Because components are integrated from the button up, processing required for components subordinate to a given level is always available and the need for stubs is eliminated. A Bottom-up integration strategy may be implemented with the following steps: 1. Low level components are combined into clusters that perform a specific software sub function. 2. A driver is written to coordinate test case input and output. 3. The cluster is tested. 4. Drivers are removed and clusters are combined moving upward in the program structure. Test Phases and Definitions
  • 7. Your Partner for Professional Successhttp://www.techpartnerz.com System Testing System testing is a series of different tests whose primary purpose is to fully exercise the computer based system. Although each test has a different purpose, all work to verify that system elements have been properly integrated and perform allocated functions. The following tests can be categorized under System testing: 1. Recovery Testing. 2. Security Testing. 3. Stress Testing. 4. Performance Testing. Recovery Testing Recovery testing is a system test that focuses the software to fall in a variety of ways and verifies that recovery is properly performed. If recovery is automatic, reinitialization, checkpointing mechanisms, data recovery and restart are evaluated for correctness. If recovery requires human intervention, the mean-time-to-repair (MTTR) is evaluated to determine whether it is within acceptable limits. Test Phases and Definitions
  • 8. Your Partner for Professional Successhttp://www.techpartnerz.com Security Testing Security testing attempts to verify that protection mechanisms built into a system will, in fact, protect it from improper penetration. During Security testing, password cracking, unauthorized entry into the software, network security are all taken into consideration. Stress Testing Stress testing executes a system in a manner that demands resources in abnormal quantity, frequency, or volume. The following types of tests may be conducted during stress testing: 1. Special tests may be designed that generate ten interrupts per second, when one or two is the average rate. 2. Input data rates may be increases by an order of magnitude to determine how input functions will respond. 3. Test Cases that require maximum memory or other resources. 4. Test Cases that may cause excessive hunting for disk-resident data. 5. Test Cases that my cause thrashing in a virtual operating system. Test Phases and Definitions
  • 9. Your Partner for Professional Successhttp://www.techpartnerz.com Performance Testing Performance tests are coupled with stress testing and usually require both hardware and software instrumentation. Regression Testing Regression testing is the re-execution of some subset of tests that have already been conducted to ensure that changes have not propagated unintended side affects. Regression may be conducted manually, by re-executing a subset of al test cases or using automated capture/playback tools. The Regression test suit contains three different classes of test cases: • A representative sample of tests that will exercise all software functions. • Additional tests that focus on software functions that are likely to be affected by the change. • Tests that focus on the software components that have been changed. Test Phases and Definitions
  • 10. Your Partner for Professional Successhttp://www.techpartnerz.com Alpha Testing The Alpha testing is conducted at the developer sites and in a controlled environment by the end-user of the software. User Acceptance Testing User Acceptance testing occurs just before the software is released to the customer. The end-users along with the developers perform the User Acceptance Testing with a certain set of test cases and typical scenarios. Beta Testing The Beta testing is conducted at one or more customer sites by the end-user of the software. The beta test is a live application of the software in an environment that cannot be controlled by the developer. Test Phases and Definitions
  • 11. Your Partner for Professional Successhttp://www.techpartnerz.com Metrics are the most important responsibility of the Test Team. Metrics allow for deeper understanding of the performance of the application and its behavior. The fine tuning of the application can be enhanced only with metrics. In a typical QA process, there are many metrics which provide information. The following can be regarded as the fundamental metric:  Functional or Test Coverage Metrics.  Software Release Metrics.  Software Maturity Metrics.  Reliability Metrics.  Mean Time To First Failure (MTTFF).  Mean Time Between Failures (MTBF).  Mean Time To Repair (MTTR). Metrics.
  • 12. Your Partner for Professional Successhttp://www.techpartnerz.com Functional or Test Coverage Metric. It can be used to measure test coverage prior to software delivery. It provides a measure of the percentage of the software tested at any point during testing. It is calculated as follows: Function Test Coverage = FE/FT Where, FE is the number of test requirements that are covered by test cases that were executed against the software FT is the total number of test requirements Software Release Metrics The software is ready for release when: 1. It has been tested with a test suite that provides 100% functional coverage, 80% branch coverage, and 100% procedure coverage. 2. There are no level 1 or 2 severity defects. 3. The defect finding rate is less than 40 new defects per 1000 hours of testing 4. Stress testing, configuration testing, installation testing, Naïve user testing, usability testing, and sanity testing have been completed Metrics.
  • 13. Your Partner for Professional Successhttp://www.techpartnerz.com Software Maturity Metric Software Maturity Index is that which can be used to determine the readiness for release of a software system. This index is especially useful for assessing release readiness when changes, additions, or deletions are made to existing software systems. It also provides an historical index of the impact of changes. It is calculated as follows: SMI = Mt - ( Fa + Fc + Fd)/Mt Where SMI is the Software Maturity Index value Mt is the number of software functions/modules in the current release Fc is the number of functions/modules that contain changes from the previous release Fa is the number of functions/modules that contain additions to the previous release Fd is the number of functions/modules that are deleted from the previous release Metrics.
  • 14. Your Partner for Professional Successhttp://www.techpartnerz.com Reliability Metrics Reliability is calculated as follows: Reliability = 1 - Number of errors (actual or predicted)/Total number of lines of executable code This reliability value is calculated for the number of errors during a specified time interval. Three other metrics can be calculated during extended testing or after the system is in production. They are: MTTFF (Mean Time to First Failure) MTTFF = The number of time intervals the system is operable until its first failure (functional failure only). MTBF (Mean Time Between Failures) MTBF = Sum of the time intervals the system is operable MTTR (Mean Time To Repair) MTTR = sum of the time intervals required to repair the system The number of repairs during the time period Metrics.
  • 15. Your Partner for Professional Successhttp://www.techpartnerz.com End of session 2
  • 16. Your Partner for Professional Successhttp://www.techpartnerz.com About TechPartnerz TechPartnerz is an IIT NIT alumni company providing end to end IT training solutions to Corporates, working professionals and Freshers TechPartnerz provides certification training programs for ITIL-Foundation, ITIL-Intermediate, PRINCE2-Foundation, PRINCE2-Practitioner, COBIT 5, Cloud Computing etc Our Software Training Portfolio includes training on QTP, Selenium, Loadrunner, Jmeter, SoapUI etc.
  • 17. Your Partner for Professional Successhttp://www.techpartnerz.com Thank You For any queries feel free to contact TechPartnerz info@techpartnerz.com Follow TechPartnerz on facebook, Linkedin, twitter