SlideShare a Scribd company logo
1 of 32
Download to read offline
1© 2020 Sogeti. All rights reserved.
Quality for DevOps teams
Rik Marselis
TestCon: 14 October 2020
ANZ selenium day: 16 Oct 2020
TMAP: the body of knowledge for
quality engineering in IT delivery
2© 2020 Sogeti. All rights reserved.
Challenges of today’s high-performance IT delivery
The business demands:
• Deliver business value
• Deliver quality at speed
The team challenges are:
• Quality engineering is everyone's responsibility
• QA & testing is integrated in people and process
The focus is:
• Organize high-performing cross-functional teams (you build it, you run it!)
• Automate everything (as long as it is useful)
4© 2020 Sogeti. All rights reserved.
Supply information
based on
measuring indicators
Focus on BUSINESS VALUE with the VOICE model
Measuring indicators
is mostly
testing
5© 2020 Sogeti. All rights reserved.
Measure indicators to establish confidence in business value
TMAP describes four groups of indicators
• Business value related indicators
• IT delivery related indicators
• Team related indicators
• Problem related indicators
A few well-measured and properly followed-up
indicators are much better than a long list of
unpractical indicators.
So as a team, together with the relevant
stakeholders, discuss which indicators show whether
you are moving towards the pursued business value.
Customer satisfaction
Number of service calls to helpdesk
Business features done
Percentage of availability (up-time)
Availability of necessary skills
Satisfaction and happiness of team members
Number of anomalies registered compared to expected
Mean time to fix operational failures
6© 2020 Sogeti. All rights reserved.
The context of Quality and quality engineering
Quality engineering is about taking responsibility for quality as a team.
Build quality in… Into the product, into the process, into the people!
(rather than performing testing as just an activity at the end)
Quality
Product People
Process
7© 2020 Sogeti. All rights reserved.
DevOps – highlights
The six DevOps principles:
(source: the DevOps handbook)
1. Customer-centric action
2. Create with the end in mind
3. End-to-end responsibility
4. Cross-functional autonomous teams
5. Continuous improvement
6. Automate everything you can
DevOps is a cross-functional systems engineering culture that aims at unifying
systems development (Dev) and systems operations (Ops) with the ability to create and
deliver fast, cheap, flexible and with adequate quality, whereby the team as a whole is
responsible for the quality. Other areas of expertise, such as business analysis and quality
assurance (including testing) are usually integrated in the team. A DevOps culture has an
Agile mindset that can be supported/implemented by e.g. the Scrum framework.
8© 2020 Sogeti. All rights reserved.
DevOps: the fundamental activities
Monitor
Plan
Code
Integrate
Deploy
Operate
Testing is NOT a
fundamental activity
since
Quality engineering
is integrated in all
activities
9© 2020 Sogeti. All rights reserved.
TEAM:
Together
Everyone
Achieves
More
Example of a cross-functional
high-performance IT delivery team
The starting point for High-performance IT delivery:
Cross-functional teams
High-performance IT delivery:
The team is responsible that tasks get done
Team members pick up tasks and thus have
varying roles at various moments in time.
Team members have one or more specialisms
and multiple competencies
But no team member has a monopoly on
specific tasks
ROLES
(not functions)
10© 2020 Sogeti. All rights reserved.
A team should be cross-functional, not multi-disciplinary
NO more silo’s or islands ➔ work together as a team!
11© 2020 Sogeti. All rights reserved.
12© 2020 Sogeti. All rights reserved.
Quality engineering activities
Which quality engineering activities must be done
Does not differ much per IT delivery model
We defined a generic set of quality engineering activities
We grouped these activities in 20 so-called “Topics”
Our main focus today
13© 2020 Sogeti. All rights reserved.
Quality engineering topics
Two groups of topics:
• Organizing
Aimed at: orchestrating, arranging, planning,
preparing and controlling
• Performing
Aimed at the operational QA & testing activities.
Note: it is not black-and-white, some topics may be relevant
for both, but the emphasize is on one or the other.
These topics are always relevant for quality
engineering, regardless of the IT development,
operations and maintenance approach.
For effective and efficient IT delivery all of these
topics need to be addressed in one way or another.
Team scope
Multi-team scope
14© 2020 Sogeti. All rights reserved.
The QA & testing topics related to the DevOps activities
Organizing
topics
Performing
topics
DevOps
activities
15© 2020 Sogeti. All rights reserved.
Examples of quality measures that are described in TMAP:
• Specification and Example (SaE)
• unit testing & mutation testing
• Test design approaches & techniques
• Feature toggles
• Monitoring
• and many many more…
Quality measures
Quality
measures for
every role
16© 2020 Sogeti. All rights reserved.
Examples of quality measures that are described in TMAP:
• Specification and Example (SaE)
• unit testing & mutation testing
• Test design techniques
• Feature toggles
• Monitoring
• and many many more…
Quality measures
OPS
17© 2020 Sogeti. All rights reserved.
Unit testing
Keep in mind that the statement “we have reached
100% code coverage” in itself doesn’t give useful
information.
The type of code coverage achieved is what matters
Code coverage demonstrates the percentage of program code that is
covered by tests. Different test design techniques guarantee less or
more coverage.
The spheres of influence
DEV
18© 2020 Sogeti. All rights reserved.
Mutation testing tests the test
Mutation testing is a type of testing where certain statements in the source code are changed
(mutated) to check if test cases will identify the fault that was introduced this way.
This is a manner to verify the quality of the test set (instead of the object under test).
Mutation testing usually is supported by tools.
Mutation testing focuses on conditional statements.
Suppose we have the following code and test cases:
IF A > 10 PRINT “YES” ENDIF
Testcase1: A := 10, expected result no print
Testcase2: A := 11, expected result “YES”
What mutation in this code would not make any of these tests fail?
IF A <> 10 PRINT “YES” ENDIF ➔ Testcase3: A := 9, expected result no print
IF A = 11 PRINT “YES” ENDIF ➔ Testcase4: A := 12, expected result “YES”
19© 2020 Sogeti. All rights reserved.
Specification and Example
To understand what "it" is that should be built and try to build "it" right the first time,
the team(s) can use Specification and Example mapping approaches.
These are collaborative approaches to define requirements and business-oriented functional tests
for software products, based on capturing and illustrating requirements using realistic examples
instead of abstract statements.
Some commonly used approaches are:
• Specification by Example (SbE)
• Example-driven development (EDD)
• Executable requirements
• Acceptance test-driven development (ATDD)
• Behavior-driven development (BDD)
• Agile acceptance testing
• Test-driven requirements
Keywords:
• Common understanding of stories/features
• Test-first
• Exploring ideas
BA
20© 2020 Sogeti. All rights reserved.
Whole-team approach: Four Amigos
The amigos approach is an approach whereby representatives of the various capabilities in a team
get together to review a deliverable.
In the Agile community “three amigos sessions” are quite common and well known.
In DevOps we commonly identify four capabilities in the cross-functional team: Business analysis,
Development, Testing and Operations. They are called the four amigos.
Whenever a deliverable has to be reviewed, the four amigos study the deliverable from their own
perspective and get together to discuss their findings. Because of the discussion and the
exchange of views, a four amigos session is usually more effective than individual informal
reviews.
Four amigos
21© 2020 Sogeti. All rights reserved.
Testing = Verification + Validation + Exploration
Testing needs test design techniques and approaches
22© 2020 Sogeti. All rights reserved.
Test approaches and techniques
Experience-based
testing
Error-guessing
Exploratory
testing
Crowd
testing
Checklists
Test
23© 2020 Sogeti. All rights reserved.
Continuous everything to achieve built-in quality
24© 2020 Sogeti. All rights reserved.
Automate everything (as long as it is useful)
By continuous testing and continuous monitoring gather information on various
indicators from both test environment and live environment.
Mainly automated testing but
some manual exploration too
25© 2020 Sogeti. All rights reserved.
The next step in automation:
Advanced analytics and AI based forecasting
in your pipeline
26© 2020 Sogeti. All rights reserved.
Multi-model predictions
Today
▪ The digital quality engineer determines, based
on the relevant parameters, which is the most
likely future situation. If the quality is at risk a
“code red” can be issued.
▪ Based on this forecast the team can decide what
actions need to be taken to ensure quality.
Advanced analytics and AI based forecasting in your pipeline
▪ Predictive analytics uses multiple models
▪ The available data from test execution and live monitoring is fed into multiple models
▪ Each model calculates the expected evolution of quality
▪ The results are shown in a “plume”
Near future
▪ Prescriptive analytics determine the most
likely situation and if quality is at risk
immediately triggers corrective action.
27© 2020 Sogeti. All rights reserved.
Quality Forecasting with Artificial Intelligence
based on measured indicators
Descriptive analytics
Predictive analytics
Prescriptive analytics
What happened
What could happen
What should we do now
Solve problems
before any user
experiences a
failure ☺
28© 2020 Sogeti. All rights reserved.
Conclusion: The change that quality engineering achieves
Messenger of
Bad News
Enabler of an
adequate quality level
that delivers
Business Value
No more
29© 2020 Sogeti. All rights reserved.
TMAP: body of knowledge for quality engineering
Certification scheme:
www.ICT-books.com
30© 2020 Sogeti. All rights reserved.
TMAP: the body of knowledge for quality engineering in IT
Photo of the book launch event at 17 March 2020
From left to right: Rik Marselis, Dennis Geurts, Berend van Veenendaal and Wouter Ruigrok
This photo was edited to include Dennis who couldn’t be present at the actual launch
Rik Marselis Dennis Geurts
Berend van
Veenendaal
Wouter
Ruigrok
Stay up-to-date with the latest TMAP developments
Sign up for the TMAP LinkedIn group:
https://www.linkedin.com/groups/8948400/
(use the link or just search for TMAP on LinkedIn)
About Sogeti
Learn more about us at
www.sogeti.com This message contains information that may be privileged or
confidential and is the property of the Capgemini Group.
Copyright© 2020 Sogeti. All rights reserved.
Sogeti is a leading provider of technology and engineering services. Sogeti delivers
solutions that enable digital transformation and offers cutting-edge expertise in Cloud,
Cybersecurity, Digital Manufacturing, Digital Assurance & Testing, and emerging
technologies. Sogeti combines agility and speed of implementation with strong technology
supplier partnerships, world class methodologies and its global delivery model,
Rightshore®. Sogeti brings together more than 25,000 professionals in 15 countries,
based in over 100 locations in Europe, USA and India. Sogeti is a wholly-owned subsidiary
of Capgemini SE, listed on the Paris Stock Exchange.
TMAP website:
www.tmap.net
Sogeti academy:
academy.sogeti.nl
TMAP:
body of knowledge for
quality engineering
email: Rik.Marselis@sogeti.com
Rik Marselis
Principal Quality Consultant
2007 2012 20122008 20142009
20181980 2020

More Related Content

What's hot

Quality Engineering and Testing with TMAP in DevOps IT delivery
Quality Engineering and Testing with TMAP in DevOps IT deliveryQuality Engineering and Testing with TMAP in DevOps IT delivery
Quality Engineering and Testing with TMAP in DevOps IT delivery
Rik Marselis
 

What's hot (20)

Free Online Agile & SCRUM Study Training Material for PMI ACP Certification P...
Free Online Agile & SCRUM Study Training Material for PMI ACP Certification P...Free Online Agile & SCRUM Study Training Material for PMI ACP Certification P...
Free Online Agile & SCRUM Study Training Material for PMI ACP Certification P...
 
How to Misuse and Abuse DORA Metrics.pptx
How to Misuse and Abuse DORA Metrics.pptxHow to Misuse and Abuse DORA Metrics.pptx
How to Misuse and Abuse DORA Metrics.pptx
 
セッションベースドテスト
セッションベースドテストセッションベースドテスト
セッションベースドテスト
 
自動テストにおけるコードベース戦略とローコード戦略のすみ分け
自動テストにおけるコードベース戦略とローコード戦略のすみ分け自動テストにおけるコードベース戦略とローコード戦略のすみ分け
自動テストにおけるコードベース戦略とローコード戦略のすみ分け
 
ISO/IEC/IEEE 29119 Software testing 勉強会 第2回 Part 2 Test Processes
ISO/IEC/IEEE 29119 Software testing 勉強会 第2回 Part 2 Test ProcessesISO/IEC/IEEE 29119 Software testing 勉強会 第2回 Part 2 Test Processes
ISO/IEC/IEEE 29119 Software testing 勉強会 第2回 Part 2 Test Processes
 
DeNAの品質を支えるQAの取り組み 〜標準化から実践まで〜
DeNAの品質を支えるQAの取り組み 〜標準化から実践まで〜DeNAの品質を支えるQAの取り組み 〜標準化から実践まで〜
DeNAの品質を支えるQAの取り組み 〜標準化から実践まで〜
 
僕らのおれおれメトリクス / We Metrics Our Own Way!
僕らのおれおれメトリクス / We Metrics Our Own Way!僕らのおれおれメトリクス / We Metrics Our Own Way!
僕らのおれおれメトリクス / We Metrics Our Own Way!
 
SQiP2016発表資料_プロセス改善の黒歴史(slideshare共有版)
SQiP2016発表資料_プロセス改善の黒歴史(slideshare共有版)SQiP2016発表資料_プロセス改善の黒歴史(slideshare共有版)
SQiP2016発表資料_プロセス改善の黒歴史(slideshare共有版)
 
テスト観点に関する取り組み事例
テスト観点に関する取り組み事例テスト観点に関する取り組み事例
テスト観点に関する取り組み事例
 
TMAP Quality Engineering workshop on A4Q congress by Rik Marselis
TMAP Quality Engineering workshop on A4Q congress by Rik Marselis TMAP Quality Engineering workshop on A4Q congress by Rik Marselis
TMAP Quality Engineering workshop on A4Q congress by Rik Marselis
 
A3 thinking
A3 thinkingA3 thinking
A3 thinking
 
Integrate CI/CD Pipelines with Jira Software Cloud
Integrate CI/CD Pipelines with Jira Software CloudIntegrate CI/CD Pipelines with Jira Software Cloud
Integrate CI/CD Pipelines with Jira Software Cloud
 
品質とは何か.pdf
品質とは何か.pdf品質とは何か.pdf
品質とは何か.pdf
 
アジャイル開発と品質保証の密なる関係 #quesqa
アジャイル開発と品質保証の密なる関係 #quesqaアジャイル開発と品質保証の密なる関係 #quesqa
アジャイル開発と品質保証の密なる関係 #quesqa
 
modern software qa - draft 1
modern software qa - draft 1modern software qa - draft 1
modern software qa - draft 1
 
60分でわかった気になるISO29119 #wacate
60分でわかった気になるISO29119 #wacate60分でわかった気になるISO29119 #wacate
60分でわかった気になるISO29119 #wacate
 
テスト分析・設計を体感しよう ~マインドマップを活用してテスト観点を発想しよう
テスト分析・設計を体感しよう ~マインドマップを活用してテスト観点を発想しようテスト分析・設計を体感しよう ~マインドマップを活用してテスト観点を発想しよう
テスト分析・設計を体感しよう ~マインドマップを活用してテスト観点を発想しよう
 
配布用_仕様整理のためのテスト設計入門afterJaSST
配布用_仕様整理のためのテスト設計入門afterJaSST配布用_仕様整理のためのテスト設計入門afterJaSST
配布用_仕様整理のためのテスト設計入門afterJaSST
 
Quality Engineering and Testing with TMAP in DevOps IT delivery
Quality Engineering and Testing with TMAP in DevOps IT deliveryQuality Engineering and Testing with TMAP in DevOps IT delivery
Quality Engineering and Testing with TMAP in DevOps IT delivery
 
Introducing ODC analysis for Redmine Osaka community
Introducing ODC analysis for Redmine Osaka communityIntroducing ODC analysis for Redmine Osaka community
Introducing ODC analysis for Redmine Osaka community
 

Similar to Quality for DevOps teams - Quality engineering in the DevOps culture

Similar to Quality for DevOps teams - Quality engineering in the DevOps culture (20)

Quality Engineering in today's cross-functTeams with TMAP
Quality Engineering in today's cross-functTeams with TMAPQuality Engineering in today's cross-functTeams with TMAP
Quality Engineering in today's cross-functTeams with TMAP
 
Introduction of TMAP to representatives of ISTQB boards in the GA week in Mar...
Introduction of TMAP to representatives of ISTQB boards in the GA week in Mar...Introduction of TMAP to representatives of ISTQB boards in the GA week in Mar...
Introduction of TMAP to representatives of ISTQB boards in the GA week in Mar...
 
Test Policy and Practices
Test Policy and PracticesTest Policy and Practices
Test Policy and Practices
 
Quality engineering in DevOps... Why? How? (TestBusters Day&Night))
Quality engineering in DevOps... Why? How? (TestBusters Day&Night))Quality engineering in DevOps... Why? How? (TestBusters Day&Night))
Quality engineering in DevOps... Why? How? (TestBusters Day&Night))
 
Quality engineering instead of testing... Why? How?
Quality engineering instead of testing... Why? How?Quality engineering instead of testing... Why? How?
Quality engineering instead of testing... Why? How?
 
GTR-The End Of Testing As We Know It
GTR-The End Of Testing As We Know ItGTR-The End Of Testing As We Know It
GTR-The End Of Testing As We Know It
 
Quality engineering & testing in DevOps IT delivery with TMAP
Quality engineering & testing in DevOps IT delivery with TMAPQuality engineering & testing in DevOps IT delivery with TMAP
Quality engineering & testing in DevOps IT delivery with TMAP
 
Quality engineering in the digital age... Why? How? (ASQF Keynote by Rik Mars...
Quality engineering in the digital age... Why? How? (ASQF Keynote by Rik Mars...Quality engineering in the digital age... Why? How? (ASQF Keynote by Rik Mars...
Quality engineering in the digital age... Why? How? (ASQF Keynote by Rik Mars...
 
Agile testing
Agile testingAgile testing
Agile testing
 
Behavior Driven Development—A Guide to Agile Practices by Josh Eastman
Behavior Driven Development—A Guide to Agile Practices by Josh EastmanBehavior Driven Development—A Guide to Agile Practices by Josh Eastman
Behavior Driven Development—A Guide to Agile Practices by Josh Eastman
 
DevOps Transformation Solution Recommendation.pptx
DevOps Transformation Solution Recommendation.pptxDevOps Transformation Solution Recommendation.pptx
DevOps Transformation Solution Recommendation.pptx
 
Consulting
ConsultingConsulting
Consulting
 
Campbell & Readman - TDD It's Not Tester Driven Development - EuroSTAR 2012
Campbell & Readman - TDD It's Not Tester Driven Development - EuroSTAR 2012Campbell & Readman - TDD It's Not Tester Driven Development - EuroSTAR 2012
Campbell & Readman - TDD It's Not Tester Driven Development - EuroSTAR 2012
 
Critical steps in Determining Your Value Stream Management Solution
Critical steps in Determining Your Value Stream Management SolutionCritical steps in Determining Your Value Stream Management Solution
Critical steps in Determining Your Value Stream Management Solution
 
Quality Jam: BDD, TDD and ATDD for the Enterprise
Quality Jam: BDD, TDD and ATDD for the EnterpriseQuality Jam: BDD, TDD and ATDD for the Enterprise
Quality Jam: BDD, TDD and ATDD for the Enterprise
 
IBM Innovate - Uderstanding DevOps
IBM Innovate - Uderstanding DevOpsIBM Innovate - Uderstanding DevOps
IBM Innovate - Uderstanding DevOps
 
DevOps 1 (1).pptx
DevOps 1 (1).pptxDevOps 1 (1).pptx
DevOps 1 (1).pptx
 
Effective Testing Practices in an Agile Environment
Effective Testing Practices in an Agile EnvironmentEffective Testing Practices in an Agile Environment
Effective Testing Practices in an Agile Environment
 
Gap Survey, Assessment and Analysis for DevSecOps
Gap Survey, Assessment and Analysis for DevSecOpsGap Survey, Assessment and Analysis for DevSecOps
Gap Survey, Assessment and Analysis for DevSecOps
 
End-to-End Quality Approach: 14 Levels of Testing
End-to-End Quality Approach: 14 Levels of TestingEnd-to-End Quality Approach: 14 Levels of Testing
End-to-End Quality Approach: 14 Levels of Testing
 

More from Rik Marselis

More from Rik Marselis (20)

The End Of Testing As We Know It (TestCon - Rik Marselis).pdf
The End Of Testing As We Know It (TestCon - Rik Marselis).pdfThe End Of Testing As We Know It (TestCon - Rik Marselis).pdf
The End Of Testing As We Know It (TestCon - Rik Marselis).pdf
 
TestExpo Quality Engineering & Sustainability
TestExpo Quality Engineering & Sustainability TestExpo Quality Engineering & Sustainability
TestExpo Quality Engineering & Sustainability
 
How to write a proposal to speak at a conference? Hints & tips
How to write a proposal to speak at a conference? Hints & tipsHow to write a proposal to speak at a conference? Hints & tips
How to write a proposal to speak at a conference? Hints & tips
 
Testen ISTQB, TMap, ISO25010 en meer. Gastcollege Windesheim Rik Marselis
Testen ISTQB, TMap, ISO25010 en meer. Gastcollege Windesheim Rik MarselisTesten ISTQB, TMap, ISO25010 en meer. Gastcollege Windesheim Rik Marselis
Testen ISTQB, TMap, ISO25010 en meer. Gastcollege Windesheim Rik Marselis
 
Over testen gesproken TestNet najaar 2019 openingskeynote Rik Marselis
Over testen gesproken TestNet najaar 2019 openingskeynote Rik MarselisOver testen gesproken TestNet najaar 2019 openingskeynote Rik Marselis
Over testen gesproken TestNet najaar 2019 openingskeynote Rik Marselis
 
EuroSTAR 2018 tutorial Rik Marselis Testing Intelligent Machines
EuroSTAR 2018 tutorial Rik Marselis Testing Intelligent MachinesEuroSTAR 2018 tutorial Rik Marselis Testing Intelligent Machines
EuroSTAR 2018 tutorial Rik Marselis Testing Intelligent Machines
 
Testing intelligent machines; approaches and techniques (QA&Test Bilbao 2018)
Testing intelligent machines; approaches and techniques (QA&Test Bilbao 2018)Testing intelligent machines; approaches and techniques (QA&Test Bilbao 2018)
Testing intelligent machines; approaches and techniques (QA&Test Bilbao 2018)
 
Qx day2018 digital_quality_strategy_rik_marselis
Qx day2018 digital_quality_strategy_rik_marselisQx day2018 digital_quality_strategy_rik_marselis
Qx day2018 digital_quality_strategy_rik_marselis
 
Testing in the digital age; AI makes the difference! Booklaunch Rik Marselis
Testing in the digital age; AI makes the difference! Booklaunch Rik MarselisTesting in the digital age; AI makes the difference! Booklaunch Rik Marselis
Testing in the digital age; AI makes the difference! Booklaunch Rik Marselis
 
Testing in the digital age; international booklaunch at German Testing Day
Testing in the digital age; international booklaunch at German Testing DayTesting in the digital age; international booklaunch at German Testing Day
Testing in the digital age; international booklaunch at German Testing Day
 
Testing of artificial intelligence; AI quality engineering skils - an introdu...
Testing of artificial intelligence; AI quality engineering skils - an introdu...Testing of artificial intelligence; AI quality engineering skils - an introdu...
Testing of artificial intelligence; AI quality engineering skils - an introdu...
 
Webinar trends in testen 2017-12-13 door Rik Marselis
Webinar trends in testen 2017-12-13 door Rik MarselisWebinar trends in testen 2017-12-13 door Rik Marselis
Webinar trends in testen 2017-12-13 door Rik Marselis
 
How to test when robots become part of your process? Workshop robotesting agi...
How to test when robots become part of your process? Workshop robotesting agi...How to test when robots become part of your process? Workshop robotesting agi...
How to test when robots become part of your process? Workshop robotesting agi...
 
Robotesting at Tricentis Accelerate 2017 by Rik Marselis
Robotesting at Tricentis Accelerate 2017 by Rik MarselisRobotesting at Tricentis Accelerate 2017 by Rik Marselis
Robotesting at Tricentis Accelerate 2017 by Rik Marselis
 
Ketenregie in Agile / DevOps: Noodzaak? (oplossing: Gilde, SAFe, combi ...)
Ketenregie in Agile / DevOps: Noodzaak? (oplossing: Gilde, SAFe, combi ...)Ketenregie in Agile / DevOps: Noodzaak? (oplossing: Gilde, SAFe, combi ...)
Ketenregie in Agile / DevOps: Noodzaak? (oplossing: Gilde, SAFe, combi ...)
 
Robotesting, are you ready for that yet? 7WCSQ Rik Marselis
Robotesting, are you ready for that yet? 7WCSQ Rik MarselisRobotesting, are you ready for that yet? 7WCSQ Rik Marselis
Robotesting, are you ready for that yet? 7WCSQ Rik Marselis
 
Webinar trends in testing 2017 03 08 (in dutch)
Webinar trends in testing 2017 03 08 (in dutch)Webinar trends in testing 2017 03 08 (in dutch)
Webinar trends in testing 2017 03 08 (in dutch)
 
Past het testvak nog in de nieuwe IT-wereld?
Past het testvak nog in de nieuwe IT-wereld?Past het testvak nog in de nieuwe IT-wereld?
Past het testvak nog in de nieuwe IT-wereld?
 
Testing OF robots and testing WITH robots. Netherlands testing day 2016 Rik M...
Testing OF robots and testing WITH robots. Netherlands testing day 2016 Rik M...Testing OF robots and testing WITH robots. Netherlands testing day 2016 Rik M...
Testing OF robots and testing WITH robots. Netherlands testing day 2016 Rik M...
 
Testing machine learning, learning machine testing. EuroSTAR 2016 Rik Marselis
Testing machine learning, learning machine testing. EuroSTAR 2016 Rik MarselisTesting machine learning, learning machine testing. EuroSTAR 2016 Rik Marselis
Testing machine learning, learning machine testing. EuroSTAR 2016 Rik Marselis
 

Recently uploaded

Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
panagenda
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
?#DUbAI#??##{{(☎️+971_581248768%)**%*]'#abortion pills for sale in dubai@
 
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Victor Rentea
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Victor Rentea
 

Recently uploaded (20)

Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptx
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
 
Exploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusExploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with Milvus
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Ransomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfRansomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdf
 
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
 
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
 
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
 
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
 

Quality for DevOps teams - Quality engineering in the DevOps culture

  • 1. 1© 2020 Sogeti. All rights reserved. Quality for DevOps teams Rik Marselis TestCon: 14 October 2020 ANZ selenium day: 16 Oct 2020 TMAP: the body of knowledge for quality engineering in IT delivery
  • 2. 2© 2020 Sogeti. All rights reserved. Challenges of today’s high-performance IT delivery The business demands: • Deliver business value • Deliver quality at speed The team challenges are: • Quality engineering is everyone's responsibility • QA & testing is integrated in people and process The focus is: • Organize high-performing cross-functional teams (you build it, you run it!) • Automate everything (as long as it is useful)
  • 3. 4© 2020 Sogeti. All rights reserved. Supply information based on measuring indicators Focus on BUSINESS VALUE with the VOICE model Measuring indicators is mostly testing
  • 4. 5© 2020 Sogeti. All rights reserved. Measure indicators to establish confidence in business value TMAP describes four groups of indicators • Business value related indicators • IT delivery related indicators • Team related indicators • Problem related indicators A few well-measured and properly followed-up indicators are much better than a long list of unpractical indicators. So as a team, together with the relevant stakeholders, discuss which indicators show whether you are moving towards the pursued business value. Customer satisfaction Number of service calls to helpdesk Business features done Percentage of availability (up-time) Availability of necessary skills Satisfaction and happiness of team members Number of anomalies registered compared to expected Mean time to fix operational failures
  • 5. 6© 2020 Sogeti. All rights reserved. The context of Quality and quality engineering Quality engineering is about taking responsibility for quality as a team. Build quality in… Into the product, into the process, into the people! (rather than performing testing as just an activity at the end) Quality Product People Process
  • 6. 7© 2020 Sogeti. All rights reserved. DevOps – highlights The six DevOps principles: (source: the DevOps handbook) 1. Customer-centric action 2. Create with the end in mind 3. End-to-end responsibility 4. Cross-functional autonomous teams 5. Continuous improvement 6. Automate everything you can DevOps is a cross-functional systems engineering culture that aims at unifying systems development (Dev) and systems operations (Ops) with the ability to create and deliver fast, cheap, flexible and with adequate quality, whereby the team as a whole is responsible for the quality. Other areas of expertise, such as business analysis and quality assurance (including testing) are usually integrated in the team. A DevOps culture has an Agile mindset that can be supported/implemented by e.g. the Scrum framework.
  • 7. 8© 2020 Sogeti. All rights reserved. DevOps: the fundamental activities Monitor Plan Code Integrate Deploy Operate Testing is NOT a fundamental activity since Quality engineering is integrated in all activities
  • 8. 9© 2020 Sogeti. All rights reserved. TEAM: Together Everyone Achieves More Example of a cross-functional high-performance IT delivery team The starting point for High-performance IT delivery: Cross-functional teams High-performance IT delivery: The team is responsible that tasks get done Team members pick up tasks and thus have varying roles at various moments in time. Team members have one or more specialisms and multiple competencies But no team member has a monopoly on specific tasks ROLES (not functions)
  • 9. 10© 2020 Sogeti. All rights reserved. A team should be cross-functional, not multi-disciplinary NO more silo’s or islands ➔ work together as a team!
  • 10. 11© 2020 Sogeti. All rights reserved.
  • 11. 12© 2020 Sogeti. All rights reserved. Quality engineering activities Which quality engineering activities must be done Does not differ much per IT delivery model We defined a generic set of quality engineering activities We grouped these activities in 20 so-called “Topics” Our main focus today
  • 12. 13© 2020 Sogeti. All rights reserved. Quality engineering topics Two groups of topics: • Organizing Aimed at: orchestrating, arranging, planning, preparing and controlling • Performing Aimed at the operational QA & testing activities. Note: it is not black-and-white, some topics may be relevant for both, but the emphasize is on one or the other. These topics are always relevant for quality engineering, regardless of the IT development, operations and maintenance approach. For effective and efficient IT delivery all of these topics need to be addressed in one way or another. Team scope Multi-team scope
  • 13. 14© 2020 Sogeti. All rights reserved. The QA & testing topics related to the DevOps activities Organizing topics Performing topics DevOps activities
  • 14. 15© 2020 Sogeti. All rights reserved. Examples of quality measures that are described in TMAP: • Specification and Example (SaE) • unit testing & mutation testing • Test design approaches & techniques • Feature toggles • Monitoring • and many many more… Quality measures Quality measures for every role
  • 15. 16© 2020 Sogeti. All rights reserved. Examples of quality measures that are described in TMAP: • Specification and Example (SaE) • unit testing & mutation testing • Test design techniques • Feature toggles • Monitoring • and many many more… Quality measures OPS
  • 16. 17© 2020 Sogeti. All rights reserved. Unit testing Keep in mind that the statement “we have reached 100% code coverage” in itself doesn’t give useful information. The type of code coverage achieved is what matters Code coverage demonstrates the percentage of program code that is covered by tests. Different test design techniques guarantee less or more coverage. The spheres of influence DEV
  • 17. 18© 2020 Sogeti. All rights reserved. Mutation testing tests the test Mutation testing is a type of testing where certain statements in the source code are changed (mutated) to check if test cases will identify the fault that was introduced this way. This is a manner to verify the quality of the test set (instead of the object under test). Mutation testing usually is supported by tools. Mutation testing focuses on conditional statements. Suppose we have the following code and test cases: IF A > 10 PRINT “YES” ENDIF Testcase1: A := 10, expected result no print Testcase2: A := 11, expected result “YES” What mutation in this code would not make any of these tests fail? IF A <> 10 PRINT “YES” ENDIF ➔ Testcase3: A := 9, expected result no print IF A = 11 PRINT “YES” ENDIF ➔ Testcase4: A := 12, expected result “YES”
  • 18. 19© 2020 Sogeti. All rights reserved. Specification and Example To understand what "it" is that should be built and try to build "it" right the first time, the team(s) can use Specification and Example mapping approaches. These are collaborative approaches to define requirements and business-oriented functional tests for software products, based on capturing and illustrating requirements using realistic examples instead of abstract statements. Some commonly used approaches are: • Specification by Example (SbE) • Example-driven development (EDD) • Executable requirements • Acceptance test-driven development (ATDD) • Behavior-driven development (BDD) • Agile acceptance testing • Test-driven requirements Keywords: • Common understanding of stories/features • Test-first • Exploring ideas BA
  • 19. 20© 2020 Sogeti. All rights reserved. Whole-team approach: Four Amigos The amigos approach is an approach whereby representatives of the various capabilities in a team get together to review a deliverable. In the Agile community “three amigos sessions” are quite common and well known. In DevOps we commonly identify four capabilities in the cross-functional team: Business analysis, Development, Testing and Operations. They are called the four amigos. Whenever a deliverable has to be reviewed, the four amigos study the deliverable from their own perspective and get together to discuss their findings. Because of the discussion and the exchange of views, a four amigos session is usually more effective than individual informal reviews. Four amigos
  • 20. 21© 2020 Sogeti. All rights reserved. Testing = Verification + Validation + Exploration Testing needs test design techniques and approaches
  • 21. 22© 2020 Sogeti. All rights reserved. Test approaches and techniques Experience-based testing Error-guessing Exploratory testing Crowd testing Checklists Test
  • 22. 23© 2020 Sogeti. All rights reserved. Continuous everything to achieve built-in quality
  • 23. 24© 2020 Sogeti. All rights reserved. Automate everything (as long as it is useful) By continuous testing and continuous monitoring gather information on various indicators from both test environment and live environment. Mainly automated testing but some manual exploration too
  • 24. 25© 2020 Sogeti. All rights reserved. The next step in automation: Advanced analytics and AI based forecasting in your pipeline
  • 25. 26© 2020 Sogeti. All rights reserved. Multi-model predictions Today ▪ The digital quality engineer determines, based on the relevant parameters, which is the most likely future situation. If the quality is at risk a “code red” can be issued. ▪ Based on this forecast the team can decide what actions need to be taken to ensure quality. Advanced analytics and AI based forecasting in your pipeline ▪ Predictive analytics uses multiple models ▪ The available data from test execution and live monitoring is fed into multiple models ▪ Each model calculates the expected evolution of quality ▪ The results are shown in a “plume” Near future ▪ Prescriptive analytics determine the most likely situation and if quality is at risk immediately triggers corrective action.
  • 26. 27© 2020 Sogeti. All rights reserved. Quality Forecasting with Artificial Intelligence based on measured indicators Descriptive analytics Predictive analytics Prescriptive analytics What happened What could happen What should we do now Solve problems before any user experiences a failure ☺
  • 27. 28© 2020 Sogeti. All rights reserved. Conclusion: The change that quality engineering achieves Messenger of Bad News Enabler of an adequate quality level that delivers Business Value No more
  • 28. 29© 2020 Sogeti. All rights reserved. TMAP: body of knowledge for quality engineering Certification scheme: www.ICT-books.com
  • 29. 30© 2020 Sogeti. All rights reserved. TMAP: the body of knowledge for quality engineering in IT Photo of the book launch event at 17 March 2020 From left to right: Rik Marselis, Dennis Geurts, Berend van Veenendaal and Wouter Ruigrok This photo was edited to include Dennis who couldn’t be present at the actual launch Rik Marselis Dennis Geurts Berend van Veenendaal Wouter Ruigrok
  • 30. Stay up-to-date with the latest TMAP developments Sign up for the TMAP LinkedIn group: https://www.linkedin.com/groups/8948400/ (use the link or just search for TMAP on LinkedIn)
  • 31. About Sogeti Learn more about us at www.sogeti.com This message contains information that may be privileged or confidential and is the property of the Capgemini Group. Copyright© 2020 Sogeti. All rights reserved. Sogeti is a leading provider of technology and engineering services. Sogeti delivers solutions that enable digital transformation and offers cutting-edge expertise in Cloud, Cybersecurity, Digital Manufacturing, Digital Assurance & Testing, and emerging technologies. Sogeti combines agility and speed of implementation with strong technology supplier partnerships, world class methodologies and its global delivery model, Rightshore®. Sogeti brings together more than 25,000 professionals in 15 countries, based in over 100 locations in Europe, USA and India. Sogeti is a wholly-owned subsidiary of Capgemini SE, listed on the Paris Stock Exchange. TMAP website: www.tmap.net Sogeti academy: academy.sogeti.nl TMAP: body of knowledge for quality engineering email: Rik.Marselis@sogeti.com
  • 32. Rik Marselis Principal Quality Consultant 2007 2012 20122008 20142009 20181980 2020