SlideShare a Scribd company logo
September 25, 2015
Introduction to
QASymphony for [INSERT
COMPANY NAME]
Relieving theTesting Bottle
Neck inYour Projects
AGENDA
• HowTesting Becomes a Bottleneck
• Removing the Bottleneck with a New Process
• Increasing ManualTesting Efficiency
• Improving AutomatedTesting Coverage & Reliability
• BuildTestability into the Application
• Managing anTesting Strategy
• Measuring a DevelopmentTeam on Quality
• Q&A (based on interest)
September 25, 2015
Introduction to
QASymphony for [INSERT
COMPANY NAME]
Why doesTesting
become a
Bottleneck?
Past development cycles often modeled the Rational Unified Process:
Source: http://www.psa-software.com/_img/_knowledge_center/rup.jpg
WHEREWE CAME FROM
If testers cannot test efficiently with predictable estimates of effort,
testing can become the bottleneck for development (less features
deployed):
TESTING CAN BECOME A BOTTLENECK
Design Code Test Deploy
Features that couldn’t be
tested, so not deployed
Given a fixed level of depth in the testing , we can test and deploy more
features but it will be less coverage
WHAT IFWETEST LESS?
Design Code Test Deploy
Reduced depth of testing
on features
If given the choice, we would have moved testing earlier in the cycle, but
we were constrained by many environmental factors:
WHY DOESTESTING NEEDTO BE LAST?
Environment
Creation
Code Merges
On-Premise
Prevalence
Desktop
Focus
Lack of
Collaboration
Off-Shore
Development
Many of our prior limitations have been replaced, based on macro trends
around technology and industry:
WE CAN MOVETHETESTING UP FRONT
• Containers have simplified the process dramaticallyEnvironment Creation
• Git has replaced Subversion as the industry standardCode Merges
• Cloud adoption is at an all time high, increased securityOn-Premise Prevalence
• Prevalence of Web, Mobile, Internet of thingsDesktop Focus
• Increase in teamwork, chat and collaboration technologyLack of Collaboration
• Shifts towards rural sourcing, onshoring of laborOff-Shore Development
Now that we have freed ourselves of past limitations, the process can be
shifted to one that aligns more with our needs:
Traditional Approach
Test-First Approach
HOWTHE PROCESS CAN LOOK NOW
Design Requirements Code Test Deploy
Design
(Automated)
Test
Code Refactor Deploy
Creating tests up front means code can be deployed almost right upon
completion, removing the testing bottleneck:
HOWTHE FUNNEL LOOKS NOW?
Create
Tests
Code Deploy
Moving testing to the front of the process is desirable, but many realities
of software teams restrict them from doing so:
• Lack of automation coverage for legacy features
• Lack of testability (API’s, UI frameworks) in legacy applications
• Lack of automation talent within the organization
• Finite project length (i.e. package software implementation)
• Regulatory compliance (need to document requirements)
For these organizations – we will also cover ways to make a traditional
requirements driven approach more efficient
FLIPPINGTHE FUNNEL MAY NOT BE POSSIBLE
September 25, 2015
Introduction to
QASymphony for [INSERT
COMPANY NAME]
For ManualTesters
Manual test execution can be optimized by implementing exploratory testing. A 2007
controlled study found that:
– Testing with test cases vs. exploratory testing take almost 7 times longer, due to the
amount of time needed to write the tests and report on them – TEST FASTER
– Testing with test cases vs. exploratory testing doesn’t find any more defects, and
does not miss many (if any) critical or severe defects in comparison to test case
testing – TEST BETTER
– Testing with test cases causes more false defect reports vs. exploratory testing –
TEST SMARTER
Study link: http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.167.3696&rep=rep1&type=pdf
HOWTO OPTIMIZE MANUALTESTING
1. Parallel test planning, test design, and test execution
2. Specific yet flexible
3. Aligned towards investigation of potential opportunities
4. Values depth and attention to detail during testing
5. Fosters knowledge sharing and awareness
WHAT IS EXPLORATORYTESTING?
Unlike traditional testing techniques, planning, design, and execution happen concurrently,
allowing efficiencies of time as well as flexibility in approach
PARALLEL PLANNING, DESIGN & EXECUTION
Plan Design Execute Report
Plan
DesignExecute
Report
Exploratory testing provides a specific lens through which to perform testing – whether
that be a user persona, functionality, criteria (i.e. localization), etc.
However, it allows testers to use the tool as an end user would, not necessarily as the
product owner envisioned it
SPECIFIC,YET FLEXIBLE
Manual Scripted Testing
I tested the application as the script
prescribed
Exploratory Testing
I tested the application as the end user
would
Exploratory testing rewards testers who identify unknown areas of “opportunity” within
the application, as they are essential in maintaining a backlog of future test charters
INVESTIGATING OPPORTUNITIES
Manual Scripted Testing Exploratory Testing
Exploratory testing relies on knowledge sharing to reach full potential – developing testers
who understand the impact of more areas of the application allows them to identify more
areas of risk and opportunity
KNOWLEDGE SHARING
Plan
DesignExecute
Report
Transfer
Learning
Example Questions to Ask
• Have you seen this before?
• What am I not considering?
• Why would someone do this?
• How would you have tested this?
September 25, 2015
Introduction to
QASymphony for [INSERT
COMPANY NAME]
For Automated
Testers
Moving towardsTDD will also demand a more complete automated
testing strategy focused on more than just UI testing:
BUILDINGA COMPLETETESTING STRATEGY
UI Tests
Integration
Tests
Unit
Tests
UI Tests
Integration
Tests
Unit Tests
UI automation should be only be used for key features and functionality,
given the following limitations:
• SPEED – tests take much longer to run when waiting for pages to load,
objects to interact, etc.
• RELIABILITY – tests break frequently for reasons besides failing
functionality (like renamed or moved objects)
• MAINTENANCE – tests require frequent updating as UI elements are
changed, requiring more maintenance
• COST – many UI automation tools are expensive and based on
perpetual licensing
WHY UI AUTOMATION IS LIMITING
The ideal testing pyramid would look like the following:
THE IDEAL RATIOS
UI Tests
Integration
Tests
Unit Tests 70% of coverage, effort, maintenance
20% of coverage, effort, maintenance
10% of coverage, effort, maintenance
Focus on the missing box (es) in the AgileTesting Matrix - typically the
performance and load tests:
Source: http://image.slidesharecdn.com/agiletestingandtheroleoftheagiletester2008-09-26rev4-090615163750-phpapp01/95/agile-
testing-the-role-of-the-agile-tester-40-728.jpg?cb=1245084455
ADDING OTHER MISSINGTESTS
September 25, 2015
Introduction to
QASymphony for [INSERT
COMPANY NAME]
For Developers
Moving toTDD process moves testing activity from solely UI based to
focusing more testing at the services/API layer:
BUILDINGTESTABLE SOFTWARE
Need for Testability
Testing in the Unit Layer will require more mock objects to “unhinge”
features that are being tested, removing them from dependencies:
Source: http://zeroturnaround.com/wp-content/uploads/2015/12/PUZZLE-1-min.png
BUILDINGTESTABLE SOFTWARE
Many teams struggle to pick an automation framework, but the reality is
most frameworks are similar and differentiate in a few key areas:
PICKING AN AUTOMATION FRAMEWORK
•Does it support dev
centric languages
(i.e. Java) or easier
to use languages
(i.e. Ruby)
•Does it support the
concept of
features, or
stories?
•Does it have
features to support
large enterprises,
as well as small
teams?
•Is it more focused
on BDD, TDD, or
ATDD?
Dev Style Scalability
LanguageWorkflow
September 25, 2015
Introduction to
QASymphony for [INSERT
COMPANY NAME]
ForTest Managers
There is a myth that EVERY test should be automated immediately for a
team to be as agile as possible
It is impossible that creating an automated test would the most efficient
approach in all scenarios
Some examples:
• Tests being used one time
• Tests on difficult parts of an application
• Tests for parts of the system that change frequently
THE AUTOMATE EVERYTHING MYTH
A more balanced approach is to estimate the total cost of creating AND
maintaining a test over a course of its life vs the cost of manual testing:
AN ROI BASED APPROACH
Automation Manual
Script Creation Cost $500 $200
Script Maintenance Cost $200/year $50/year
Script Execution Cost $120/year $480/year
Cost after Year 1 $820 $730
Cost after Year 2 $1140 $1260
Cost after Year 3 $1460 $1790
Manual
Even
Automate
For teams that are looking to build automation coverage on legacy
applications, another approach might be to automate based on time saved
A SAVINGS BASED APPROACH
Test Case A Test Case B Test Case C
Manual Execution $500/year $300/year $400/year
Manual Maint. $200/year $100/year $200/year
Auto. Creation $300 $150 $480
Automation Maint. $100/year $50/year $100/year
Year 1 Savings $400 $250 $120
September 25, 2015
Introduction to
QASymphony for [INSERT
COMPANY NAME]
For Dev Managers
Agile promotes delivering software quickly, so development managers
often incentivize developers based on features, story points, or lines of
code delivered
However, this approach can often incentivize bad behavior – pushing
incomplete or unstable code over to testers, who are then responsible to
identify the issues developers missed
Development managers should incentivize their teams for building good
code quickly, which is understandable and easy to test and debug
MANAGING ENGINEERSTO QUALITY METRICS
Coupling Between Objects (CBO) – A measure of how closely or loosely
coupled methods are. 1-4 is good, higher than that may mean risk in
trying to refactor or resolve issues
Comment Ratio – Ratio of comments to total lines of code, indicating how
much the developer has documented the code for future debugging or
refactoring
Associated Critical Defects Ratio – Ratio of critical defects opened on
specific features divided by the effort (story points) for that feature. Often
normalized for feature complexity
SOME GOOD QUALITY METRICSTOTRACK
Kevin Dunne
kevindunne@qasymphony.com
Twitter: @KevinDunneQA
QUESTIONS?

More Related Content

PPTX
Agile Resourcing
PPTX
Scrum in Distributed Teams
PPTX
Kanban testing
PDF
Understanding Agile Hardware
PPTX
DevOps-CoE
PPTX
Version One Highlights
PPTX
Scaling Atlassian for the Enterprise
PDF
DevOps Maturity Curve v5
Agile Resourcing
Scrum in Distributed Teams
Kanban testing
Understanding Agile Hardware
DevOps-CoE
Version One Highlights
Scaling Atlassian for the Enterprise
DevOps Maturity Curve v5

What's hot (20)

PPT
Two Things You Must Have for Lasting Agility
PDF
DevOps maturity models Knowit and DASA
PPT
The Agile Revolution of IBM
PPTX
Achieving Balanced Agile Testing
PPTX
Introduction to Agile Hardware
PPTX
LKIN2019: Lean transformation journey of infra briefing for business agility...
PPTX
Agile Tool Selection
PPTX
DevOps- exec level briefing
PPT
How Does IBM Do Agile
PPT
Agile at scale
PDF
DevOps Powerpoint Presentation Slides
PPTX
Exec Leadership workshop
PPTX
Introduction to Kanban
PPTX
Agile lean workshop for managers & exec leadership
PPTX
A Day in the Life: Developer Enhancements with Visual Studio 2012
PPTX
DOES16 London - Darren Hague - SAP’s DevOps Journey: From Building an App to ...
PPTX
ALM 101: An introduction to application lifecycle management
PPTX
5 Keys to Building a Successful DevOps Culture featuring Mandi Walls
PPTX
Ravi Tadwalkar as SM/DevOps/management/Coach
PDF
1×10 rola QA w tworzeniu Atlassian JIRA
Two Things You Must Have for Lasting Agility
DevOps maturity models Knowit and DASA
The Agile Revolution of IBM
Achieving Balanced Agile Testing
Introduction to Agile Hardware
LKIN2019: Lean transformation journey of infra briefing for business agility...
Agile Tool Selection
DevOps- exec level briefing
How Does IBM Do Agile
Agile at scale
DevOps Powerpoint Presentation Slides
Exec Leadership workshop
Introduction to Kanban
Agile lean workshop for managers & exec leadership
A Day in the Life: Developer Enhancements with Visual Studio 2012
DOES16 London - Darren Hague - SAP’s DevOps Journey: From Building an App to ...
ALM 101: An introduction to application lifecycle management
5 Keys to Building a Successful DevOps Culture featuring Mandi Walls
Ravi Tadwalkar as SM/DevOps/management/Coach
1×10 rola QA w tworzeniu Atlassian JIRA
Ad

Viewers also liked (11)

PPT
Agile Data Architecture
PDF
10 Safe Essential Elements to Achieve the Benefits of SAFe
PPTX
Ugly Truths About Scaling Agile
PPTX
cPrime FBI Agile Success
PDF
Agile Dependency Management
PPTX
Agile Reporting in JIRA
PPTX
JIRA System Admin Traning
PDF
Adopting SAFe with JIRA
PPTX
Essential SAFe and Launching your first Agile Release Train
PDF
Value Streams and the Scaled Agile Framework
PPTX
Transforming Organizations with CI/CD
Agile Data Architecture
10 Safe Essential Elements to Achieve the Benefits of SAFe
Ugly Truths About Scaling Agile
cPrime FBI Agile Success
Agile Dependency Management
Agile Reporting in JIRA
JIRA System Admin Traning
Adopting SAFe with JIRA
Essential SAFe and Launching your first Agile Release Train
Value Streams and the Scaled Agile Framework
Transforming Organizations with CI/CD
Ad

Similar to Relieveing the Testing Bottle Neck - Webinar (20)

PDF
Quality at the speed of digital
PDF
Microsoft ALM Support - Testing Perspective
PPTX
Zero touch QA automation platform for DevOps
PDF
Shift Left - Approach and practices with IBM
PPS
Estimating test effort part 1 of 2
PDF
An Ultimate Guide to Continuous Testing in Agile Projects.pdf
PDF
Webinar Presentation: Best Practices in QA Testing - Leveraging Open Source T...
PDF
qLabs Test Automation
PDF
Test Automation: Investment Today Pays Back Tomorrow
PPTX
Automation Essentials for the Age of Agile
PPT
Future of QA
PPT
Futureofqa
PPTX
Shift Left Quality Assurance: How to do it. Why it matters.
PPT
Aspires Testing Services Presentation
PDF
ROLE OF iSAFE/iMobi IN SEAMLESS INTEGRATION OF THE DEVOPS ENVIRONMENT
PDF
Agile Journey to agile
PDF
Role of Test Automation in Agile and DevOps
PDF
Agile testing
PDF
AAIC Cloud Engineering and DevOps overview v2.3.pdf
PDF
Why Automation Testing is a Vital Skill for Modern QA Engineers (1).pdf
Quality at the speed of digital
Microsoft ALM Support - Testing Perspective
Zero touch QA automation platform for DevOps
Shift Left - Approach and practices with IBM
Estimating test effort part 1 of 2
An Ultimate Guide to Continuous Testing in Agile Projects.pdf
Webinar Presentation: Best Practices in QA Testing - Leveraging Open Source T...
qLabs Test Automation
Test Automation: Investment Today Pays Back Tomorrow
Automation Essentials for the Age of Agile
Future of QA
Futureofqa
Shift Left Quality Assurance: How to do it. Why it matters.
Aspires Testing Services Presentation
ROLE OF iSAFE/iMobi IN SEAMLESS INTEGRATION OF THE DEVOPS ENVIRONMENT
Agile Journey to agile
Role of Test Automation in Agile and DevOps
Agile testing
AAIC Cloud Engineering and DevOps overview v2.3.pdf
Why Automation Testing is a Vital Skill for Modern QA Engineers (1).pdf

More from Cprime (20)

PDF
Achieving Sustainable Growth in the Digital Age
PDF
Mastering an Integrated Atlassian Tooling Ecosystem: Strategies, Success Stor...
PDF
A Framework for Development in the AI Age
PDF
Improving IT Investment Decisions and Business Outcomes with Integrated Enter...
PDF
Harnessing Atlassian's Power Through Cloud Transformation and Adoption
PDF
AI-powered Service Management: Streamlining Incident Management in JSM using ...
PDF
Enterprise Migration from Data Center to Atlassian Cloud: Start with an Asses...
PDF
AI for Everyone: Demystifying Large Language Models (LLMs) Like ChatGPT
PDF
From Project to Product - The Need for Speed
PDF
We Need a Hero — How to Find and Support Your Next Superstar Product Owner
PDF
How to Unlock Productivity and Innovation with Generative AI and ChatGPT
PDF
Modern Learning for Enterprises: How to Empower Your Teams
PDF
Enterprise Service Management for Finance, HR, and Marketing
PDF
ESM Webinar Series Part 2 | The Keys to Optimal ESM are Automation and Integr...
PDF
Perfecting Customer Management Using Jira Service Management
PDF
From Project to Product: Leaders, Here's What It Means to You
PDF
Using a Service Catalog and CMDB to Standardize Change Management in Jira Ser...
PDF
6 Common Challenges RTEs Face & How to Solve Them
PDF
Enterprise Service Management Webinar Series Part 1
PDF
How to Enable Change Management with Jira Service Management
Achieving Sustainable Growth in the Digital Age
Mastering an Integrated Atlassian Tooling Ecosystem: Strategies, Success Stor...
A Framework for Development in the AI Age
Improving IT Investment Decisions and Business Outcomes with Integrated Enter...
Harnessing Atlassian's Power Through Cloud Transformation and Adoption
AI-powered Service Management: Streamlining Incident Management in JSM using ...
Enterprise Migration from Data Center to Atlassian Cloud: Start with an Asses...
AI for Everyone: Demystifying Large Language Models (LLMs) Like ChatGPT
From Project to Product - The Need for Speed
We Need a Hero — How to Find and Support Your Next Superstar Product Owner
How to Unlock Productivity and Innovation with Generative AI and ChatGPT
Modern Learning for Enterprises: How to Empower Your Teams
Enterprise Service Management for Finance, HR, and Marketing
ESM Webinar Series Part 2 | The Keys to Optimal ESM are Automation and Integr...
Perfecting Customer Management Using Jira Service Management
From Project to Product: Leaders, Here's What It Means to You
Using a Service Catalog and CMDB to Standardize Change Management in Jira Ser...
6 Common Challenges RTEs Face & How to Solve Them
Enterprise Service Management Webinar Series Part 1
How to Enable Change Management with Jira Service Management

Recently uploaded (20)

PDF
Wondershare Filmora 15 Crack With Activation Key [2025
PDF
How to Migrate SBCGlobal Email to Yahoo Easily
PPT
Introduction Database Management System for Course Database
PDF
Nekopoi APK 2025 free lastest update
PPTX
Online Work Permit System for Fast Permit Processing
PPTX
Introduction to Artificial Intelligence
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 41
PDF
Adobe Illustrator 28.6 Crack My Vision of Vector Design
PDF
Softaken Excel to vCard Converter Software.pdf
PPTX
CHAPTER 12 - CYBER SECURITY AND FUTURE SKILLS (1) (1).pptx
PDF
top salesforce developer skills in 2025.pdf
PDF
Flood Susceptibility Mapping Using Image-Based 2D-CNN Deep Learnin. Overview ...
PDF
Raksha Bandhan Grocery Pricing Trends in India 2025.pdf
PDF
T3DD25 TYPO3 Content Blocks - Deep Dive by André Kraus
PPTX
VVF-Customer-Presentation2025-Ver1.9.pptx
PPTX
ISO 45001 Occupational Health and Safety Management System
PDF
Digital Strategies for Manufacturing Companies
PDF
Design an Analysis of Algorithms I-SECS-1021-03
PPTX
Lecture 3: Operating Systems Introduction to Computer Hardware Systems
PDF
Which alternative to Crystal Reports is best for small or large businesses.pdf
Wondershare Filmora 15 Crack With Activation Key [2025
How to Migrate SBCGlobal Email to Yahoo Easily
Introduction Database Management System for Course Database
Nekopoi APK 2025 free lastest update
Online Work Permit System for Fast Permit Processing
Introduction to Artificial Intelligence
Internet Downloader Manager (IDM) Crack 6.42 Build 41
Adobe Illustrator 28.6 Crack My Vision of Vector Design
Softaken Excel to vCard Converter Software.pdf
CHAPTER 12 - CYBER SECURITY AND FUTURE SKILLS (1) (1).pptx
top salesforce developer skills in 2025.pdf
Flood Susceptibility Mapping Using Image-Based 2D-CNN Deep Learnin. Overview ...
Raksha Bandhan Grocery Pricing Trends in India 2025.pdf
T3DD25 TYPO3 Content Blocks - Deep Dive by André Kraus
VVF-Customer-Presentation2025-Ver1.9.pptx
ISO 45001 Occupational Health and Safety Management System
Digital Strategies for Manufacturing Companies
Design an Analysis of Algorithms I-SECS-1021-03
Lecture 3: Operating Systems Introduction to Computer Hardware Systems
Which alternative to Crystal Reports is best for small or large businesses.pdf

Relieveing the Testing Bottle Neck - Webinar

  • 1. September 25, 2015 Introduction to QASymphony for [INSERT COMPANY NAME] Relieving theTesting Bottle Neck inYour Projects
  • 2. AGENDA • HowTesting Becomes a Bottleneck • Removing the Bottleneck with a New Process • Increasing ManualTesting Efficiency • Improving AutomatedTesting Coverage & Reliability • BuildTestability into the Application • Managing anTesting Strategy • Measuring a DevelopmentTeam on Quality • Q&A (based on interest)
  • 3. September 25, 2015 Introduction to QASymphony for [INSERT COMPANY NAME] Why doesTesting become a Bottleneck?
  • 4. Past development cycles often modeled the Rational Unified Process: Source: http://www.psa-software.com/_img/_knowledge_center/rup.jpg WHEREWE CAME FROM
  • 5. If testers cannot test efficiently with predictable estimates of effort, testing can become the bottleneck for development (less features deployed): TESTING CAN BECOME A BOTTLENECK Design Code Test Deploy Features that couldn’t be tested, so not deployed
  • 6. Given a fixed level of depth in the testing , we can test and deploy more features but it will be less coverage WHAT IFWETEST LESS? Design Code Test Deploy Reduced depth of testing on features
  • 7. If given the choice, we would have moved testing earlier in the cycle, but we were constrained by many environmental factors: WHY DOESTESTING NEEDTO BE LAST? Environment Creation Code Merges On-Premise Prevalence Desktop Focus Lack of Collaboration Off-Shore Development
  • 8. Many of our prior limitations have been replaced, based on macro trends around technology and industry: WE CAN MOVETHETESTING UP FRONT • Containers have simplified the process dramaticallyEnvironment Creation • Git has replaced Subversion as the industry standardCode Merges • Cloud adoption is at an all time high, increased securityOn-Premise Prevalence • Prevalence of Web, Mobile, Internet of thingsDesktop Focus • Increase in teamwork, chat and collaboration technologyLack of Collaboration • Shifts towards rural sourcing, onshoring of laborOff-Shore Development
  • 9. Now that we have freed ourselves of past limitations, the process can be shifted to one that aligns more with our needs: Traditional Approach Test-First Approach HOWTHE PROCESS CAN LOOK NOW Design Requirements Code Test Deploy Design (Automated) Test Code Refactor Deploy
  • 10. Creating tests up front means code can be deployed almost right upon completion, removing the testing bottleneck: HOWTHE FUNNEL LOOKS NOW? Create Tests Code Deploy
  • 11. Moving testing to the front of the process is desirable, but many realities of software teams restrict them from doing so: • Lack of automation coverage for legacy features • Lack of testability (API’s, UI frameworks) in legacy applications • Lack of automation talent within the organization • Finite project length (i.e. package software implementation) • Regulatory compliance (need to document requirements) For these organizations – we will also cover ways to make a traditional requirements driven approach more efficient FLIPPINGTHE FUNNEL MAY NOT BE POSSIBLE
  • 12. September 25, 2015 Introduction to QASymphony for [INSERT COMPANY NAME] For ManualTesters
  • 13. Manual test execution can be optimized by implementing exploratory testing. A 2007 controlled study found that: – Testing with test cases vs. exploratory testing take almost 7 times longer, due to the amount of time needed to write the tests and report on them – TEST FASTER – Testing with test cases vs. exploratory testing doesn’t find any more defects, and does not miss many (if any) critical or severe defects in comparison to test case testing – TEST BETTER – Testing with test cases causes more false defect reports vs. exploratory testing – TEST SMARTER Study link: http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.167.3696&rep=rep1&type=pdf HOWTO OPTIMIZE MANUALTESTING
  • 14. 1. Parallel test planning, test design, and test execution 2. Specific yet flexible 3. Aligned towards investigation of potential opportunities 4. Values depth and attention to detail during testing 5. Fosters knowledge sharing and awareness WHAT IS EXPLORATORYTESTING?
  • 15. Unlike traditional testing techniques, planning, design, and execution happen concurrently, allowing efficiencies of time as well as flexibility in approach PARALLEL PLANNING, DESIGN & EXECUTION Plan Design Execute Report Plan DesignExecute Report
  • 16. Exploratory testing provides a specific lens through which to perform testing – whether that be a user persona, functionality, criteria (i.e. localization), etc. However, it allows testers to use the tool as an end user would, not necessarily as the product owner envisioned it SPECIFIC,YET FLEXIBLE Manual Scripted Testing I tested the application as the script prescribed Exploratory Testing I tested the application as the end user would
  • 17. Exploratory testing rewards testers who identify unknown areas of “opportunity” within the application, as they are essential in maintaining a backlog of future test charters INVESTIGATING OPPORTUNITIES Manual Scripted Testing Exploratory Testing
  • 18. Exploratory testing relies on knowledge sharing to reach full potential – developing testers who understand the impact of more areas of the application allows them to identify more areas of risk and opportunity KNOWLEDGE SHARING Plan DesignExecute Report Transfer Learning Example Questions to Ask • Have you seen this before? • What am I not considering? • Why would someone do this? • How would you have tested this?
  • 19. September 25, 2015 Introduction to QASymphony for [INSERT COMPANY NAME] For Automated Testers
  • 20. Moving towardsTDD will also demand a more complete automated testing strategy focused on more than just UI testing: BUILDINGA COMPLETETESTING STRATEGY UI Tests Integration Tests Unit Tests UI Tests Integration Tests Unit Tests
  • 21. UI automation should be only be used for key features and functionality, given the following limitations: • SPEED – tests take much longer to run when waiting for pages to load, objects to interact, etc. • RELIABILITY – tests break frequently for reasons besides failing functionality (like renamed or moved objects) • MAINTENANCE – tests require frequent updating as UI elements are changed, requiring more maintenance • COST – many UI automation tools are expensive and based on perpetual licensing WHY UI AUTOMATION IS LIMITING
  • 22. The ideal testing pyramid would look like the following: THE IDEAL RATIOS UI Tests Integration Tests Unit Tests 70% of coverage, effort, maintenance 20% of coverage, effort, maintenance 10% of coverage, effort, maintenance
  • 23. Focus on the missing box (es) in the AgileTesting Matrix - typically the performance and load tests: Source: http://image.slidesharecdn.com/agiletestingandtheroleoftheagiletester2008-09-26rev4-090615163750-phpapp01/95/agile- testing-the-role-of-the-agile-tester-40-728.jpg?cb=1245084455 ADDING OTHER MISSINGTESTS
  • 24. September 25, 2015 Introduction to QASymphony for [INSERT COMPANY NAME] For Developers
  • 25. Moving toTDD process moves testing activity from solely UI based to focusing more testing at the services/API layer: BUILDINGTESTABLE SOFTWARE Need for Testability
  • 26. Testing in the Unit Layer will require more mock objects to “unhinge” features that are being tested, removing them from dependencies: Source: http://zeroturnaround.com/wp-content/uploads/2015/12/PUZZLE-1-min.png BUILDINGTESTABLE SOFTWARE
  • 27. Many teams struggle to pick an automation framework, but the reality is most frameworks are similar and differentiate in a few key areas: PICKING AN AUTOMATION FRAMEWORK •Does it support dev centric languages (i.e. Java) or easier to use languages (i.e. Ruby) •Does it support the concept of features, or stories? •Does it have features to support large enterprises, as well as small teams? •Is it more focused on BDD, TDD, or ATDD? Dev Style Scalability LanguageWorkflow
  • 28. September 25, 2015 Introduction to QASymphony for [INSERT COMPANY NAME] ForTest Managers
  • 29. There is a myth that EVERY test should be automated immediately for a team to be as agile as possible It is impossible that creating an automated test would the most efficient approach in all scenarios Some examples: • Tests being used one time • Tests on difficult parts of an application • Tests for parts of the system that change frequently THE AUTOMATE EVERYTHING MYTH
  • 30. A more balanced approach is to estimate the total cost of creating AND maintaining a test over a course of its life vs the cost of manual testing: AN ROI BASED APPROACH Automation Manual Script Creation Cost $500 $200 Script Maintenance Cost $200/year $50/year Script Execution Cost $120/year $480/year Cost after Year 1 $820 $730 Cost after Year 2 $1140 $1260 Cost after Year 3 $1460 $1790 Manual Even Automate
  • 31. For teams that are looking to build automation coverage on legacy applications, another approach might be to automate based on time saved A SAVINGS BASED APPROACH Test Case A Test Case B Test Case C Manual Execution $500/year $300/year $400/year Manual Maint. $200/year $100/year $200/year Auto. Creation $300 $150 $480 Automation Maint. $100/year $50/year $100/year Year 1 Savings $400 $250 $120
  • 32. September 25, 2015 Introduction to QASymphony for [INSERT COMPANY NAME] For Dev Managers
  • 33. Agile promotes delivering software quickly, so development managers often incentivize developers based on features, story points, or lines of code delivered However, this approach can often incentivize bad behavior – pushing incomplete or unstable code over to testers, who are then responsible to identify the issues developers missed Development managers should incentivize their teams for building good code quickly, which is understandable and easy to test and debug MANAGING ENGINEERSTO QUALITY METRICS
  • 34. Coupling Between Objects (CBO) – A measure of how closely or loosely coupled methods are. 1-4 is good, higher than that may mean risk in trying to refactor or resolve issues Comment Ratio – Ratio of comments to total lines of code, indicating how much the developer has documented the code for future debugging or refactoring Associated Critical Defects Ratio – Ratio of critical defects opened on specific features divided by the effort (story points) for that feature. Often normalized for feature complexity SOME GOOD QUALITY METRICSTOTRACK