SlideShare une entreprise Scribd logo
1  sur  36
Télécharger pour lire hors ligne
1
Behavior Driven Development
Workshop
Craeg Strong
CTO, Ariel Partners
October 24, 2016
Washington, DC
©	Copyright	Ariel	Partners	2016																*sales@arielpartners.com		((646)	467-7394
2
Software Development since 1988
Large Commercial & Government Projects
Agile Coach / DevOps Engineer
Kanban Trainer / SpecFlow Trainer
Performance & Scalability Architect
Certified Ethical Hacker
New York & Washington DC Area
CTO,	Ariel	Partners	
AKT,	CSM,	CSP,	CSD,	CSPO,	PSM,	
ITILv3,	PMI-ACP,	PMP,	LeSS,	SAFe
www.arielpartners.com
cstrong@arielpartners.com
@ckstrong1
Craeg	Strong
©	Copyright	Ariel	Partners	2016																	*sales@arielpartners.com		((646)	467-7394
3
Agenda
• Context &	Background
• Benefits	of	BDD
• Good	vs	Bad	Gherkin	Demonstration
• Bad	Gherkin	Team Review	&	Discussion
• Whirlwind Tour	of	Tools	&	Reports
• Gherkin	Writing	Workshop
• Group	Discussion
©	Copyright	Ariel	Partners	2016																	*sales@arielpartners.com		((646)	467-7394
4
Supplies	Needed
1. 2+	Rolls	of	Scotch	Transparent	Tape
2. 6+	Pads	of	Large	Size	Post-It	Notes
3. A	Dozen	or	more	Sharpies
4. 1-2	Post-It	Self-Stick	Easel	Pads	25”	x	30.5”
©	Copyright	Ariel	Partners	2014																	*sales@arielpartners.com		((646)	467-7394
5
Where	Does	BDD	Fit	In?
©	Copyright	Ariel	Partners	2016																	*sales@arielpartners.com		((646)	467-7394	
Useful	Techniques
Story	Mapping
BDD:	Specification	By	Example
Impact	
Mapping
Visioning	/	Ideation	
Workshops
GOOTB
Mockups
Wireframes
Journey
Mapping
6
When	Do	Organizations	Switch	To	BDD?
• New	to	scrum,	need	help	with	understanding	how	to	create	
useful	Acceptance	Test	Criteria
• Converting	a	legacy	Microsoft	VB	application	to	.NET
• Government	project	without	enough	testing,	need	to	beef	up	
testing	capabilities
• Mostly	manual	testing,	spreadsheets,	looking	for	a	better	way
• Automated	GUI	Tests	Brittle,	Hard	To	Maintain
©	Copyright	Ariel	Partners	2016																	*sales@arielpartners.com		((646)	467-7394
7
What	Problems	Can	BDD	Solve?
qEnsure what is to be delivered is actually required
qEnsure what is to be delivered is valuable to the business
qEnsure what is to be delivered is within the agreed scope of
functionality
qEnsure what is to be delivered is well understood by the team
©	Copyright	Ariel	Partners	2016																	*sales@arielpartners.com		((646)	467-7394	
ü Clearly specify the required behavior of each software component
ü in everyday common business language
ü that anyone in the team (including business stakeholders) can understand
ü And then enforce those rules via tests
How?
8
Who	Is	Involved?	
The	Three	Amigos
©	Copyright	Ariel	Partners	2016																	*sales@arielpartners.com		((646)	467-7394	
public void CalculateDiscount(Order order)
{
if (order.Customer.IsNew)
order.FinalAmount =
Math.Round(order.Total * 9/10);
}
Register	as	“bart_bookworm”
Go	to	“/catalog/search”
Enter	“ISBN-0955683610”
Click	“Search”
Click	“Add	to	Cart”
Click	“View	Cart”
Verify	“Subtotal”	is	“$33.75”
We	would	like	to	encourage	new	users	to	buy	in	our	shop.
Therefore	we	offer	10%	discount	for	their	first	order.
Analyst Developer Tester
9
Specification	Workshops
©	Copyright	Ariel	Partners	2016																	*sales@arielpartners.com		((646)	467-7394	
Given	the	user	has	not	ordered	yet
When	the	user	adds	a	book	with	the	price	of	EUR	37.5	
into	the	shopping	cart
Then	the	shopping	cart	sub-total	is	EUR	33.75.
We	would	like	to	encourage	new	users	to	buy	in	our	shop.
Therefore	we	offer	10%	discount	for	their	first	order.
Analyst Developer Tester
Gherkin
10
Gherkin:	The	Language	of	BDD
©	Copyright	Ariel	Partners	2016																	*sales@arielpartners.com		((646)	467-7394	
Scenario
Given [Context]
And	[More	Context]
When	(<role>	does)	[Action]
And	[Other	Action]
Then	(<role>	should	see) [Outcome]
And	[More	Outcomes]
Scenarios
=
Test	Cases
=	
Acceptance	Criteria
11
Good	Gherkin	versus	Bad	Gherkin
©	Copyright	Ariel	Partners	2016																	*sales@arielpartners.com		((646)	467-7394	
VS.
12
Bad	versus	Good	Gherkin
©	Copyright	Ariel	Partners	2016																	*sales@arielpartners.com		((646)	467-7394	
Happy	Path	Should	
be	First
Boundary	condition	does	
not	match	scenario
Show	me,	don’t	tell	me.		
Should	be	an	example
GUI	Display	Detail	makes	
this	brittle.		What	if	we	
change	it	to	a	bar	chart?
This	data	is	already	
grouped.		Use	the	
user’s	language	not	
technical	language
More	GUI	Details,	
not	necessary
?Why	
Different?
13
Bad	versus	Good	Gherkin	(Printout)
©	Copyright	Ariel	Partners	2016																	*sales@arielpartners.com		((646)	467-7394
14
Characteristics	of	Good Gherkin	Specifications
• Use	Domain	Language	(Problem	Space)	not	Technical	Language	
(Solution	Space)
• Tangible,	not	Abstract
• Explicit,	not	Implicit
• No Extraneous	information
• Human	Readable,	no	“magic	numbers”
• Avoid	GUI-Specific	terms	(e.g.	“button”,	“screen”,	“click”)
• Look	For	Reusable	Phrases
©	Copyright	Ariel	Partners	2016																	*sales@arielpartners.com		((646)	467-7394
15
Scenario	Outline	Style-Gherkin
©	Copyright	Ariel	Partners	2016																	*sales@arielpartners.com		((646)	467-7394	
Feature: Shipping cost calculation
Scenario Outline: Calculate shipping costs
Given I have <books> books in my basket
And my shipping address is in <region>
When I start the checkout process
Then the shipping costs should be EUR <cost>
Examples:
| case | books | region | cost |
| single book to EU | 1 | Europe | 7 |
| two books to EU | 2 | Europe | 9 |
| single book to US | 1 | US | 12 |
@edge-case
Examples: Edge cases
| case | books | region | cost |
| too many books | 10000 | Europe | 20005 |
| zero books | 0 | Europe | 0 |
16
Bad	Gherkin:	Team	One
©	Copyright	Ariel	Partners	2016																	*sales@arielpartners.com		((646)	467-7394
17
Bad	Gherkin:	Team	Two
©	Copyright	Ariel	Partners	2016																	*sales@arielpartners.com		((646)	467-7394
18
Bad	Gherkin:	Team	Three
©	Copyright	Ariel	Partners	2016																	*sales@arielpartners.com		((646)	467-7394
19
Bad	Gherkin:	Team	Four
©	Copyright	Ariel	Partners	2016																	*sales@arielpartners.com		((646)	467-7394
20
BDD	cuts the	Gordian	knot
©	Copyright	Ariel	Partners	2016																	*sales@arielpartners.com		((646)	467-7394	
Unit	Tests	As	Needed
Automated	Acceptance	Tests	
(BDD)
Automated	GUI	Tests
Manual	Exploratory	Testing
21
Features	Versus	
User	Stories
©	Copyright	Ariel	Partners	2016																	*sales@arielpartners.com		((646)	467-7394	
1.	Manual	
Entry	of	
Email
2.	
Dropdown	
4.	Type-
Ahead
3.	Don’t	
Show	My
Email
22
Feature	File
BDD	With	SpecFlow
1.	Write	
Feature
Step	Definitions
2.	Generate	
Template
3.	Fill	In	
Code
©	Copyright	Ariel	Partners	2016																	*sales@arielpartners.com		((646)	467-7394
23
Functional	Coverage	Report
q All system functions expressed as features, split into user stories
q All user stories have acceptance criteria
q Each criterion translated to an automated test using structured
English (Gherkin)
q Customized report matches epics and user stories to automated
acceptance tests
q Test fails unless software is implemented correctly
Links	to	Feature	
Documentation	
Generated	via	Pickles
©	Copyright	Ariel	Partners	2016																	*sales@arielpartners.com		((646)	467-7394
24
Generating	Documentation	From	
Specifications
©	Copyright	Ariel	Partners	2016																	*sales@arielpartners.com		((646)	467-7394
25
Combined	Report
©	Copyright	Ariel	Partners	2016																	*sales@arielpartners.com		((646)	467-7394	
Page One
Page Two
26
Different	flavors	of	BDD
©	Copyright	Ariel	Partners	2016																	*sales@arielpartners.com		((646)	467-7394	
External	Specification	
Maintained	Outside	of	
Code	Base
Code
Base
Application
Excel	Sheet Wiki	Page
Textual	Specification	
Maintained	Within	
Code	Base	
Code
Base
Specification	Captured	
Directly	In	Source	Code
Code
Base
27
Gherkin	Exercise:	Team	One
©	Copyright	Ariel	Partners	2016																	*sales@arielpartners.com		((646)	467-7394	
As a user
I want to input my feedback
So that I can recognize a co-worker for their actions
Acceptance Criteria
• Both sender and receiver email must be filled in
• One Corporate value (e.g. Integrity, Commitment, Courage, Excellence) must be filled in
• A short, optional description may be filled in
• I need to be able recognize someone even if they are not registered with the recognition system
Key Examples
• Leonard.mccoy@email.com recognizes an existing user spock@email.com for Integrity
• Anthony.bourdain@email.com recognizes a new user andrew.zimmern@email.com for Commitment
Create Recognition
28
Gherkin	Exercise:	Team	One	(Hints)
©	Copyright	Ariel	Partners	2016																	*sales@arielpartners.com		((646)	467-7394
29
Gherkin	Exercise:	Team	Two
©	Copyright	Ariel	Partners	2016																	*sales@arielpartners.com		((646)	467-7394	
As a manager
I want the system to limit the number of times per week a user can recognize a co-worker
So that a recognition is seen as valuable
Acceptance Criteria
• To send a recognition, both sender and receiver email must be filled in
• To send a recognition, one Corporate value (e.g. Integrity, Commitment, Courage, Excellence) must be filled in
• For each recognition, a short, optional description may be filled in
• If a user has sent three recognitions this week, system should prevent user from entering a fourth
Key Examples
Limit Recognitions Per Week
Sender Receiver Corporate Value Date Result
Tom.Cruise@email.org Johnny.depp@email.org Commitment Monday 17 Oct 2016 ok
Tom.Cruise@email.org Leonardo.DiCaprio@email.org Integrity Wed 19 Oct 2016 ok
Tom.Cruise@email.org Brad.Pitt@email.org Respect Thur 20 Oct 2016 ok
Tom.Cruise@email.org Robert.DowneyJr@email.org Courage Fri 21 Oct 2016 error
30
Gherkin	Exercise:	Team	Two	(Hints)
©	Copyright	Ariel	Partners	2016																	*sales@arielpartners.com		((646)	467-7394
31
Gherkin	Exercise:	Team	Three
©	Copyright	Ariel	Partners	2016																	*sales@arielpartners.com		((646)	467-7394	
As an administrator
I want to maintain the set of corporate values for which a user can recognize a peer
So that our corporate culture is aligned with the values we espouse
Acceptance Criteria
• Each corporate value consists of a one or two word title and a brief description
• There must never be less than two corporate values
• If a previously-existing corporate value is removed, existing recognitions are unaffected, but no new recognitions can be added
with the removed corporate value
Key Examples
Maintain Corporate Values
Corporate Value Description
Integrity Always act honestly, ethically, and do the right thing even when it hurts
Commitment Committed to the long term success and happiness of our customers, our people, and our partners
Courage To take on difficult challenges, to accept new ideas, to accept incremental failure
Excellence Always strive to exceed expectations and continuously improve
32
Gherkin	Exercise:	Team	Three	(Hints)
©	Copyright	Ariel	Partners	2016																	*sales@arielpartners.com		((646)	467-7394
33
Gherkin	Exercise:	Team	Four
©	Copyright	Ariel	Partners	2016																	*sales@arielpartners.com		((646)	467-7394	
As a user
I want to see the most recent recognitions
So that I can stay informed of the recognitions my peers are receiving
Acceptance Criteria
• Home page should display a list of all recognitions in the system
• Each recognition should list the sender email, receiver email, corporate value, and date sent
• The list of recognitions should show the most recent first, like the facebook feed
• A user should be able to sort any column
• A user should be able to show only recognitions for a particular corporate value (filter by corporate value)
Key Examples
Recognition Feed
Sender Receiver Corporate Value Date
Jaqen.Hghar@got.org Arya.Stark@got.org Excellence 10/12/2016
Jaqen.Hghar@got.org Arya.Stark@got.org Excellence 9/27/2016
Petyr.Baelish@got.org Sansa.Stark@got.org Courage 10/22/2016
Jaime.Lannister@got.org Cersei.Lannister@got.org Commitment 6/1/2016
34
Gherkin	Exercise:	Team	Four	(Hints)
©	Copyright	Ariel	Partners	2016																	*sales@arielpartners.com		((646)	467-7394
35
Team	Discussions,	Q	&	A
©	Copyright	Ariel	Partners	2016																	*sales@arielpartners.com		((646)	467-7394	
Craeg	Strong
Savant	Financial	Technologies,	Inc.	
d/b/a	Ariel	Partners
Cell:	(917)	992-0259	
cstrong@arielpartners.com
www.arielpartners.com
@arielpartners
Thank	You!
Helpful	Links
Gherkin	Documentation:	http://docs.behat.org/en/v2.5/guides/1.gherkin.html
Cucumber	(Java,	PHP,	Ruby,	etc):	https://cucumber.io/
Cucumber	(JavaScript):	https://www.npmjs.com/package/cucumber
Specflow (.NET):	http://www.specflow.org/
Pickles	Documentation:	http://www.picklesdoc.com/
CucumberJS Reports:	https://www.npmjs.com/package/cucumber-html-reporter
…many	more...
36
Advantages	of	BDD	Approach
©	Copyright	Ariel	Partners	2016																	*sales@arielpartners.com		((646)	467-7394	
Improves
Software
Quality
q Helps develop frugal, effective and testable software
q Answers: what functions are well-covered? Where do we have exposure?
Makes Writing
Tests Easier
q many convenience functions
q pre-integrated with powerful libraries like NUnit and Selenium
Encourages
Collaboration
q Encourages tester, analyst and developer to sync up
q Captures information that might otherwise be lost
Facilitates
Communication
q Way for Product Owners to provide concrete examples
q Easy to define boundary conditions
Documentation
and Reporting
q Requirements Traceability? Yup.
q Functional Coverage? Yup.
Are we building
right thing?
q Did we “answer the mail”?
q Validates that the software meets the requirements

Contenu connexe

Tendances

DOES16 San Francisco - Susanna Brown & Ben Chan - DevOps in the Midst of an A...
DOES16 San Francisco - Susanna Brown & Ben Chan - DevOps in the Midst of an A...DOES16 San Francisco - Susanna Brown & Ben Chan - DevOps in the Midst of an A...
DOES16 San Francisco - Susanna Brown & Ben Chan - DevOps in the Midst of an A...Gene Kim
 
Agile2018 Top 10 Takeaways - Synerzip
Agile2018 Top 10 Takeaways - SynerzipAgile2018 Top 10 Takeaways - Synerzip
Agile2018 Top 10 Takeaways - SynerzipSynerzip
 
[Europe merge world tour] Perforce Europe Merge World Tour Keynote
[Europe   merge world tour] Perforce Europe Merge World Tour Keynote[Europe   merge world tour] Perforce Europe Merge World Tour Keynote
[Europe merge world tour] Perforce Europe Merge World Tour KeynotePerforce
 
React and GraphQL at Stripe
React and GraphQL at StripeReact and GraphQL at Stripe
React and GraphQL at StripeSashko Stubailo
 
Expedite Enterprise Software Development with JIRA®, TeamForge® SCM, and Jenkins
Expedite Enterprise Software Development with JIRA®, TeamForge® SCM, and JenkinsExpedite Enterprise Software Development with JIRA®, TeamForge® SCM, and Jenkins
Expedite Enterprise Software Development with JIRA®, TeamForge® SCM, and JenkinsCollabNet
 
CA Project and Portfolio Management v14.x - Building a Better Portfolio
CA Project and Portfolio Management v14.x - Building a Better PortfolioCA Project and Portfolio Management v14.x - Building a Better Portfolio
CA Project and Portfolio Management v14.x - Building a Better PortfolioCA Technologies
 
Sneak Peak into Self-Service, Cross-Enterprise, Job Scheduling with CA Worklo...
Sneak Peak into Self-Service, Cross-Enterprise, Job Scheduling with CA Worklo...Sneak Peak into Self-Service, Cross-Enterprise, Job Scheduling with CA Worklo...
Sneak Peak into Self-Service, Cross-Enterprise, Job Scheduling with CA Worklo...CA Technologies
 
Hands-On Lab: Let's Build an ITSM Dashboard
Hands-On Lab: Let's Build an ITSM DashboardHands-On Lab: Let's Build an ITSM Dashboard
Hands-On Lab: Let's Build an ITSM DashboardCA Technologies
 
Continuous Behavior - BDD in Continuous Delivery (CoDers Who Test, Gothenburg...
Continuous Behavior - BDD in Continuous Delivery (CoDers Who Test, Gothenburg...Continuous Behavior - BDD in Continuous Delivery (CoDers Who Test, Gothenburg...
Continuous Behavior - BDD in Continuous Delivery (CoDers Who Test, Gothenburg...Gáspár Nagy
 
Create Great Quarterly Plans While Eliminating Planning Waste
Create Great Quarterly Plans While Eliminating Planning WasteCreate Great Quarterly Plans While Eliminating Planning Waste
Create Great Quarterly Plans While Eliminating Planning WasteCA Technologies
 
Technology Primer: Closing the DevOps Loop by Integrating CA Application Perf...
Technology Primer: Closing the DevOps Loop by Integrating CA Application Perf...Technology Primer: Closing the DevOps Loop by Integrating CA Application Perf...
Technology Primer: Closing the DevOps Loop by Integrating CA Application Perf...CA Technologies
 
Running Data Platforms Like Products
Running Data Platforms Like ProductsRunning Data Platforms Like Products
Running Data Platforms Like ProductsVMware Tanzu
 
CA Performance Manager Agility by using Docker Containers for Network Manag...
CA Performance Manager Agility by using Docker Containers for Network Manag...CA Performance Manager Agility by using Docker Containers for Network Manag...
CA Performance Manager Agility by using Docker Containers for Network Manag...CA Technologies
 
Tech Talk: Master Your Continuous Delivery Pipeline with a New Level of Orche...
Tech Talk: Master Your Continuous Delivery Pipeline with a New Level of Orche...Tech Talk: Master Your Continuous Delivery Pipeline with a New Level of Orche...
Tech Talk: Master Your Continuous Delivery Pipeline with a New Level of Orche...CA Technologies
 
Babok overall chp2~7 slideshare
Babok overall  chp2~7 slideshareBabok overall  chp2~7 slideshare
Babok overall chp2~7 slidesharejongminshi
 
Data-Driven DevOps: Improve Velocity and Quality of Software Delivery with Me...
Data-Driven DevOps: Improve Velocity and Quality of Software Delivery with Me...Data-Driven DevOps: Improve Velocity and Quality of Software Delivery with Me...
Data-Driven DevOps: Improve Velocity and Quality of Software Delivery with Me...Splunk
 
Continuous Performance Testing
Continuous Performance TestingContinuous Performance Testing
Continuous Performance TestingGrid Dynamics
 
Case Study: How The Home Depot Built Quality Into Software Development
Case Study: How The Home Depot Built Quality Into Software DevelopmentCase Study: How The Home Depot Built Quality Into Software Development
Case Study: How The Home Depot Built Quality Into Software DevelopmentCA Technologies
 
Top-Down and BottomS-Up Planning at Breakthru Beverage Group
Top-Down and BottomS-Up Planning at Breakthru Beverage GroupTop-Down and BottomS-Up Planning at Breakthru Beverage Group
Top-Down and BottomS-Up Planning at Breakthru Beverage GroupKyle Goodfriend
 

Tendances (20)

DOES16 San Francisco - Susanna Brown & Ben Chan - DevOps in the Midst of an A...
DOES16 San Francisco - Susanna Brown & Ben Chan - DevOps in the Midst of an A...DOES16 San Francisco - Susanna Brown & Ben Chan - DevOps in the Midst of an A...
DOES16 San Francisco - Susanna Brown & Ben Chan - DevOps in the Midst of an A...
 
Agile2018 Top 10 Takeaways - Synerzip
Agile2018 Top 10 Takeaways - SynerzipAgile2018 Top 10 Takeaways - Synerzip
Agile2018 Top 10 Takeaways - Synerzip
 
[Europe merge world tour] Perforce Europe Merge World Tour Keynote
[Europe   merge world tour] Perforce Europe Merge World Tour Keynote[Europe   merge world tour] Perforce Europe Merge World Tour Keynote
[Europe merge world tour] Perforce Europe Merge World Tour Keynote
 
React and GraphQL at Stripe
React and GraphQL at StripeReact and GraphQL at Stripe
React and GraphQL at Stripe
 
Expedite Enterprise Software Development with JIRA®, TeamForge® SCM, and Jenkins
Expedite Enterprise Software Development with JIRA®, TeamForge® SCM, and JenkinsExpedite Enterprise Software Development with JIRA®, TeamForge® SCM, and Jenkins
Expedite Enterprise Software Development with JIRA®, TeamForge® SCM, and Jenkins
 
Project plan
Project planProject plan
Project plan
 
CA Project and Portfolio Management v14.x - Building a Better Portfolio
CA Project and Portfolio Management v14.x - Building a Better PortfolioCA Project and Portfolio Management v14.x - Building a Better Portfolio
CA Project and Portfolio Management v14.x - Building a Better Portfolio
 
Sneak Peak into Self-Service, Cross-Enterprise, Job Scheduling with CA Worklo...
Sneak Peak into Self-Service, Cross-Enterprise, Job Scheduling with CA Worklo...Sneak Peak into Self-Service, Cross-Enterprise, Job Scheduling with CA Worklo...
Sneak Peak into Self-Service, Cross-Enterprise, Job Scheduling with CA Worklo...
 
Hands-On Lab: Let's Build an ITSM Dashboard
Hands-On Lab: Let's Build an ITSM DashboardHands-On Lab: Let's Build an ITSM Dashboard
Hands-On Lab: Let's Build an ITSM Dashboard
 
Continuous Behavior - BDD in Continuous Delivery (CoDers Who Test, Gothenburg...
Continuous Behavior - BDD in Continuous Delivery (CoDers Who Test, Gothenburg...Continuous Behavior - BDD in Continuous Delivery (CoDers Who Test, Gothenburg...
Continuous Behavior - BDD in Continuous Delivery (CoDers Who Test, Gothenburg...
 
Create Great Quarterly Plans While Eliminating Planning Waste
Create Great Quarterly Plans While Eliminating Planning WasteCreate Great Quarterly Plans While Eliminating Planning Waste
Create Great Quarterly Plans While Eliminating Planning Waste
 
Technology Primer: Closing the DevOps Loop by Integrating CA Application Perf...
Technology Primer: Closing the DevOps Loop by Integrating CA Application Perf...Technology Primer: Closing the DevOps Loop by Integrating CA Application Perf...
Technology Primer: Closing the DevOps Loop by Integrating CA Application Perf...
 
Running Data Platforms Like Products
Running Data Platforms Like ProductsRunning Data Platforms Like Products
Running Data Platforms Like Products
 
CA Performance Manager Agility by using Docker Containers for Network Manag...
CA Performance Manager Agility by using Docker Containers for Network Manag...CA Performance Manager Agility by using Docker Containers for Network Manag...
CA Performance Manager Agility by using Docker Containers for Network Manag...
 
Tech Talk: Master Your Continuous Delivery Pipeline with a New Level of Orche...
Tech Talk: Master Your Continuous Delivery Pipeline with a New Level of Orche...Tech Talk: Master Your Continuous Delivery Pipeline with a New Level of Orche...
Tech Talk: Master Your Continuous Delivery Pipeline with a New Level of Orche...
 
Babok overall chp2~7 slideshare
Babok overall  chp2~7 slideshareBabok overall  chp2~7 slideshare
Babok overall chp2~7 slideshare
 
Data-Driven DevOps: Improve Velocity and Quality of Software Delivery with Me...
Data-Driven DevOps: Improve Velocity and Quality of Software Delivery with Me...Data-Driven DevOps: Improve Velocity and Quality of Software Delivery with Me...
Data-Driven DevOps: Improve Velocity and Quality of Software Delivery with Me...
 
Continuous Performance Testing
Continuous Performance TestingContinuous Performance Testing
Continuous Performance Testing
 
Case Study: How The Home Depot Built Quality Into Software Development
Case Study: How The Home Depot Built Quality Into Software DevelopmentCase Study: How The Home Depot Built Quality Into Software Development
Case Study: How The Home Depot Built Quality Into Software Development
 
Top-Down and BottomS-Up Planning at Breakthru Beverage Group
Top-Down and BottomS-Up Planning at Breakthru Beverage GroupTop-Down and BottomS-Up Planning at Breakthru Beverage Group
Top-Down and BottomS-Up Planning at Breakthru Beverage Group
 

En vedette

10th grade Basic English
10th grade Basic English 10th grade Basic English
10th grade Basic English Zainab Khan
 
Xplore ix104 i x104rd ix104c2d ix104c3 tablet pc series jugyufrtde
Xplore ix104 i x104rd ix104c2d ix104c3 tablet pc series jugyufrtdeXplore ix104 i x104rd ix104c2d ix104c3 tablet pc series jugyufrtde
Xplore ix104 i x104rd ix104c2d ix104c3 tablet pc series jugyufrtdeWei Liu
 
Paridad de género en lista de concejales
Paridad de género en lista de concejalesParidad de género en lista de concejales
Paridad de género en lista de concejalesUnidiversidad
 
Economías emergentes
Economías emergentesEconomías emergentes
Economías emergenteszamalunxho
 
Geração de Conteúdos e Acessos: Mídias Sociais
Geração de Conteúdos e Acessos: Mídias SociaisGeração de Conteúdos e Acessos: Mídias Sociais
Geração de Conteúdos e Acessos: Mídias SociaisMeridiano Digital
 
Roth philosophy / cosmetic dentistry courses
Roth philosophy / cosmetic dentistry coursesRoth philosophy / cosmetic dentistry courses
Roth philosophy / cosmetic dentistry coursesIndian dental academy
 
Bioprogressive therapy /certified fixed orthodontic courses by Indian dental...
Bioprogressive therapy  /certified fixed orthodontic courses by Indian dental...Bioprogressive therapy  /certified fixed orthodontic courses by Indian dental...
Bioprogressive therapy /certified fixed orthodontic courses by Indian dental...Indian dental academy
 
20160714 StrategyNZ - One-day Workshop - Simon Wakeman Powerpoint(2016)
20160714 StrategyNZ - One-day Workshop - Simon Wakeman Powerpoint(2016) 20160714 StrategyNZ - One-day Workshop - Simon Wakeman Powerpoint(2016)
20160714 StrategyNZ - One-day Workshop - Simon Wakeman Powerpoint(2016) McGuinness Institute
 
TacklingPovertyNZ Workshop - How to tackle poverty in Rotorua
TacklingPovertyNZ Workshop - How to tackle poverty in RotoruaTacklingPovertyNZ Workshop - How to tackle poverty in Rotorua
TacklingPovertyNZ Workshop - How to tackle poverty in RotoruaMcGuinness Institute
 
common congenital deformities of hand
common congenital deformities of handcommon congenital deformities of hand
common congenital deformities of handSumer Yadav
 
Adjuncts in straight wire technique /certified fixed orthodontic courses by ...
Adjuncts in straight wire technique  /certified fixed orthodontic courses by ...Adjuncts in straight wire technique  /certified fixed orthodontic courses by ...
Adjuncts in straight wire technique /certified fixed orthodontic courses by ...Indian dental academy
 

En vedette (20)

NOYS poster ads
NOYS poster adsNOYS poster ads
NOYS poster ads
 
curtin.interview
curtin.interviewcurtin.interview
curtin.interview
 
Behavior
BehaviorBehavior
Behavior
 
10th grade Basic English
10th grade Basic English 10th grade Basic English
10th grade Basic English
 
Xplore ix104 i x104rd ix104c2d ix104c3 tablet pc series jugyufrtde
Xplore ix104 i x104rd ix104c2d ix104c3 tablet pc series jugyufrtdeXplore ix104 i x104rd ix104c2d ix104c3 tablet pc series jugyufrtde
Xplore ix104 i x104rd ix104c2d ix104c3 tablet pc series jugyufrtde
 
FedEx_Purple
FedEx_PurpleFedEx_Purple
FedEx_Purple
 
Slideshare
SlideshareSlideshare
Slideshare
 
Paridad de género en lista de concejales
Paridad de género en lista de concejalesParidad de género en lista de concejales
Paridad de género en lista de concejales
 
Pillars of Scrum Slides for Andy
Pillars of Scrum Slides for AndyPillars of Scrum Slides for Andy
Pillars of Scrum Slides for Andy
 
Economías emergentes
Economías emergentesEconomías emergentes
Economías emergentes
 
Geração de Conteúdos e Acessos: Mídias Sociais
Geração de Conteúdos e Acessos: Mídias SociaisGeração de Conteúdos e Acessos: Mídias Sociais
Geração de Conteúdos e Acessos: Mídias Sociais
 
Cleft hand
Cleft handCleft hand
Cleft hand
 
Roth philosophy / cosmetic dentistry courses
Roth philosophy / cosmetic dentistry coursesRoth philosophy / cosmetic dentistry courses
Roth philosophy / cosmetic dentistry courses
 
Bioprogressive therapy /certified fixed orthodontic courses by Indian dental...
Bioprogressive therapy  /certified fixed orthodontic courses by Indian dental...Bioprogressive therapy  /certified fixed orthodontic courses by Indian dental...
Bioprogressive therapy /certified fixed orthodontic courses by Indian dental...
 
Preadjusted orthodontic appliance
Preadjusted orthodontic appliancePreadjusted orthodontic appliance
Preadjusted orthodontic appliance
 
20160714 StrategyNZ - One-day Workshop - Simon Wakeman Powerpoint(2016)
20160714 StrategyNZ - One-day Workshop - Simon Wakeman Powerpoint(2016) 20160714 StrategyNZ - One-day Workshop - Simon Wakeman Powerpoint(2016)
20160714 StrategyNZ - One-day Workshop - Simon Wakeman Powerpoint(2016)
 
TacklingPovertyNZ Workshop - How to tackle poverty in Rotorua
TacklingPovertyNZ Workshop - How to tackle poverty in RotoruaTacklingPovertyNZ Workshop - How to tackle poverty in Rotorua
TacklingPovertyNZ Workshop - How to tackle poverty in Rotorua
 
Brackets in orthodontics
Brackets in orthodonticsBrackets in orthodontics
Brackets in orthodontics
 
common congenital deformities of hand
common congenital deformities of handcommon congenital deformities of hand
common congenital deformities of hand
 
Adjuncts in straight wire technique /certified fixed orthodontic courses by ...
Adjuncts in straight wire technique  /certified fixed orthodontic courses by ...Adjuncts in straight wire technique  /certified fixed orthodontic courses by ...
Adjuncts in straight wire technique /certified fixed orthodontic courses by ...
 

Similaire à 20161024 Agile DC 2016 Conf Behavior Driven Development Workshop

20141109 Agile Dev East 2014 Conf Lean Documentation
20141109 Agile Dev East 2014 Conf Lean Documentation20141109 Agile Dev East 2014 Conf Lean Documentation
20141109 Agile Dev East 2014 Conf Lean DocumentationCraeg Strong
 
20160517 Lean Kanban North America 2016 Conf Bringing DevOps to an Entrenched...
20160517 Lean Kanban North America 2016 Conf Bringing DevOps to an Entrenched...20160517 Lean Kanban North America 2016 Conf Bringing DevOps to an Entrenched...
20160517 Lean Kanban North America 2016 Conf Bringing DevOps to an Entrenched...Craeg Strong
 
Meeting Strict Documentation Requirements in Agile
Meeting Strict Documentation Requirements in AgileMeeting Strict Documentation Requirements in Agile
Meeting Strict Documentation Requirements in AgileTechWell
 
20150623 IEEE ASQ Conf Teaching An Old Dog New Tricks: Agile For Legacy Systems
20150623 IEEE ASQ Conf Teaching An Old Dog New Tricks: Agile For Legacy Systems20150623 IEEE ASQ Conf Teaching An Old Dog New Tricks: Agile For Legacy Systems
20150623 IEEE ASQ Conf Teaching An Old Dog New Tricks: Agile For Legacy SystemsCraeg Strong
 
Overcoming Organizational Obstacles to DevOps & Continuous Delivery
Overcoming Organizational Obstacles to DevOps & Continuous Delivery Overcoming Organizational Obstacles to DevOps & Continuous Delivery
Overcoming Organizational Obstacles to DevOps & Continuous Delivery XebiaLabs
 
20190923 AgileDC 2019 Conf Kanban AntiPatterns: What you don't know *can* hur...
20190923 AgileDC 2019 Conf Kanban AntiPatterns: What you don't know *can* hur...20190923 AgileDC 2019 Conf Kanban AntiPatterns: What you don't know *can* hur...
20190923 AgileDC 2019 Conf Kanban AntiPatterns: What you don't know *can* hur...Craeg Strong
 
20170508 Lean Kanban North America 2017 Conf Kanban Response to Sprint Zero a...
20170508 Lean Kanban North America 2017 Conf Kanban Response to Sprint Zero a...20170508 Lean Kanban North America 2017 Conf Kanban Response to Sprint Zero a...
20170508 Lean Kanban North America 2017 Conf Kanban Response to Sprint Zero a...Craeg Strong
 
20150708 Kanban Meetup An Unexpected Journey: Improving a Scrum Implementatio...
20150708 Kanban Meetup An Unexpected Journey: Improving a Scrum Implementatio...20150708 Kanban Meetup An Unexpected Journey: Improving a Scrum Implementatio...
20150708 Kanban Meetup An Unexpected Journey: Improving a Scrum Implementatio...Craeg Strong
 
20201111 Agile DevOps East 2020 Conf Now You See It: Observing Flow using Kan...
20201111 Agile DevOps East 2020 Conf Now You See It: Observing Flow using Kan...20201111 Agile DevOps East 2020 Conf Now You See It: Observing Flow using Kan...
20201111 Agile DevOps East 2020 Conf Now You See It: Observing Flow using Kan...Craeg Strong
 
Bill curtis Beyond process - a challenge for SEPGs
Bill curtis Beyond process - a challenge for SEPGsBill curtis Beyond process - a challenge for SEPGs
Bill curtis Beyond process - a challenge for SEPGsSPIN Chennai
 
NRB MAINFRAME DAY 06 - Linda De Bruyn - A realistic and pragmatic approach to...
NRB MAINFRAME DAY 06 - Linda De Bruyn - A realistic and pragmatic approach to...NRB MAINFRAME DAY 06 - Linda De Bruyn - A realistic and pragmatic approach to...
NRB MAINFRAME DAY 06 - Linda De Bruyn - A realistic and pragmatic approach to...NRB
 
O365Con18 - How to Run a Search Project in SharePoint - Matthew McDermott
O365Con18 - How to Run a Search Project in SharePoint -  Matthew McDermottO365Con18 - How to Run a Search Project in SharePoint -  Matthew McDermott
O365Con18 - How to Run a Search Project in SharePoint - Matthew McDermottNCCOMMS
 
Become an IT Service Broker
Become an IT Service BrokerBecome an IT Service Broker
Become an IT Service BrokerRackspace
 
Moving to Agile Methods and DevOps on IBM i with ARCAD Pack for Rational 1479...
Moving to Agile Methods and DevOps on IBM i with ARCAD Pack for Rational 1479...Moving to Agile Methods and DevOps on IBM i with ARCAD Pack for Rational 1479...
Moving to Agile Methods and DevOps on IBM i with ARCAD Pack for Rational 1479...Philippe Krief
 
Out With the Old, in With the Open-source: Brainshark's Complete CMS Migration
Out With the Old, in With the Open-source: Brainshark's Complete CMS MigrationOut With the Old, in With the Open-source: Brainshark's Complete CMS Migration
Out With the Old, in With the Open-source: Brainshark's Complete CMS MigrationAcquia
 
Initiating and Sustaining Design Systems for the Enterprise
Initiating and Sustaining Design Systems for the EnterpriseInitiating and Sustaining Design Systems for the Enterprise
Initiating and Sustaining Design Systems for the Enterpriseuxpin
 
Destination Digital: Tracking Progress to Continue First Class Performance
Destination Digital: Tracking Progress to Continue First Class PerformanceDestination Digital: Tracking Progress to Continue First Class Performance
Destination Digital: Tracking Progress to Continue First Class PerformanceNGA Human Resources
 

Similaire à 20161024 Agile DC 2016 Conf Behavior Driven Development Workshop (20)

20141109 Agile Dev East 2014 Conf Lean Documentation
20141109 Agile Dev East 2014 Conf Lean Documentation20141109 Agile Dev East 2014 Conf Lean Documentation
20141109 Agile Dev East 2014 Conf Lean Documentation
 
20160517 Lean Kanban North America 2016 Conf Bringing DevOps to an Entrenched...
20160517 Lean Kanban North America 2016 Conf Bringing DevOps to an Entrenched...20160517 Lean Kanban North America 2016 Conf Bringing DevOps to an Entrenched...
20160517 Lean Kanban North America 2016 Conf Bringing DevOps to an Entrenched...
 
Meeting Strict Documentation Requirements in Agile
Meeting Strict Documentation Requirements in AgileMeeting Strict Documentation Requirements in Agile
Meeting Strict Documentation Requirements in Agile
 
20150623 IEEE ASQ Conf Teaching An Old Dog New Tricks: Agile For Legacy Systems
20150623 IEEE ASQ Conf Teaching An Old Dog New Tricks: Agile For Legacy Systems20150623 IEEE ASQ Conf Teaching An Old Dog New Tricks: Agile For Legacy Systems
20150623 IEEE ASQ Conf Teaching An Old Dog New Tricks: Agile For Legacy Systems
 
Overcoming Organizational Obstacles to DevOps & Continuous Delivery
Overcoming Organizational Obstacles to DevOps & Continuous Delivery Overcoming Organizational Obstacles to DevOps & Continuous Delivery
Overcoming Organizational Obstacles to DevOps & Continuous Delivery
 
20190923 AgileDC 2019 Conf Kanban AntiPatterns: What you don't know *can* hur...
20190923 AgileDC 2019 Conf Kanban AntiPatterns: What you don't know *can* hur...20190923 AgileDC 2019 Conf Kanban AntiPatterns: What you don't know *can* hur...
20190923 AgileDC 2019 Conf Kanban AntiPatterns: What you don't know *can* hur...
 
20170508 Lean Kanban North America 2017 Conf Kanban Response to Sprint Zero a...
20170508 Lean Kanban North America 2017 Conf Kanban Response to Sprint Zero a...20170508 Lean Kanban North America 2017 Conf Kanban Response to Sprint Zero a...
20170508 Lean Kanban North America 2017 Conf Kanban Response to Sprint Zero a...
 
20150708 Kanban Meetup An Unexpected Journey: Improving a Scrum Implementatio...
20150708 Kanban Meetup An Unexpected Journey: Improving a Scrum Implementatio...20150708 Kanban Meetup An Unexpected Journey: Improving a Scrum Implementatio...
20150708 Kanban Meetup An Unexpected Journey: Improving a Scrum Implementatio...
 
20201111 Agile DevOps East 2020 Conf Now You See It: Observing Flow using Kan...
20201111 Agile DevOps East 2020 Conf Now You See It: Observing Flow using Kan...20201111 Agile DevOps East 2020 Conf Now You See It: Observing Flow using Kan...
20201111 Agile DevOps East 2020 Conf Now You See It: Observing Flow using Kan...
 
Cloud Customer Architecture for API Management
Cloud Customer Architecture for API ManagementCloud Customer Architecture for API Management
Cloud Customer Architecture for API Management
 
Bill curtis Beyond process - a challenge for SEPGs
Bill curtis Beyond process - a challenge for SEPGsBill curtis Beyond process - a challenge for SEPGs
Bill curtis Beyond process - a challenge for SEPGs
 
Apeksha Tandel Resume
Apeksha Tandel ResumeApeksha Tandel Resume
Apeksha Tandel Resume
 
NRB MAINFRAME DAY 06 - Linda De Bruyn - A realistic and pragmatic approach to...
NRB MAINFRAME DAY 06 - Linda De Bruyn - A realistic and pragmatic approach to...NRB MAINFRAME DAY 06 - Linda De Bruyn - A realistic and pragmatic approach to...
NRB MAINFRAME DAY 06 - Linda De Bruyn - A realistic and pragmatic approach to...
 
O365Con18 - How to Run a Search Project in SharePoint - Matthew McDermott
O365Con18 - How to Run a Search Project in SharePoint -  Matthew McDermottO365Con18 - How to Run a Search Project in SharePoint -  Matthew McDermott
O365Con18 - How to Run a Search Project in SharePoint - Matthew McDermott
 
Become an IT Service Broker
Become an IT Service BrokerBecome an IT Service Broker
Become an IT Service Broker
 
Moving to Agile Methods and DevOps on IBM i with ARCAD Pack for Rational 1479...
Moving to Agile Methods and DevOps on IBM i with ARCAD Pack for Rational 1479...Moving to Agile Methods and DevOps on IBM i with ARCAD Pack for Rational 1479...
Moving to Agile Methods and DevOps on IBM i with ARCAD Pack for Rational 1479...
 
Out With the Old, in With the Open-source: Brainshark's Complete CMS Migration
Out With the Old, in With the Open-source: Brainshark's Complete CMS MigrationOut With the Old, in With the Open-source: Brainshark's Complete CMS Migration
Out With the Old, in With the Open-source: Brainshark's Complete CMS Migration
 
Initiating and Sustaining Design Systems for the Enterprise
Initiating and Sustaining Design Systems for the EnterpriseInitiating and Sustaining Design Systems for the Enterprise
Initiating and Sustaining Design Systems for the Enterprise
 
Destination Digital: Tracking Progress to Continue First Class Performance
Destination Digital: Tracking Progress to Continue First Class PerformanceDestination Digital: Tracking Progress to Continue First Class Performance
Destination Digital: Tracking Progress to Continue First Class Performance
 
Ajay_Pega_LSA.DOCX
Ajay_Pega_LSA.DOCXAjay_Pega_LSA.DOCX
Ajay_Pega_LSA.DOCX
 

Plus de Craeg Strong

20231019 Flight Levels Bosch Engagement Day 2023 Business Agility With Flight...
20231019 Flight Levels Bosch Engagement Day 2023 Business Agility With Flight...20231019 Flight Levels Bosch Engagement Day 2023 Business Agility With Flight...
20231019 Flight Levels Bosch Engagement Day 2023 Business Agility With Flight...Craeg Strong
 
RESPONSIVE TRAINING FOR DIGITAL TRANSFORMATIONS
RESPONSIVE TRAINING FOR DIGITAL TRANSFORMATIONSRESPONSIVE TRAINING FOR DIGITAL TRANSFORMATIONS
RESPONSIVE TRAINING FOR DIGITAL TRANSFORMATIONSCraeg Strong
 
20230829 DAFITC 2023 Agile For Leaders And Executives
20230829 DAFITC 2023 Agile For Leaders And Executives20230829 DAFITC 2023 Agile For Leaders And Executives
20230829 DAFITC 2023 Agile For Leaders And ExecutivesCraeg Strong
 
20231004 JiraCon Team Spaces In Confluence
20231004 JiraCon Team Spaces In Confluence20231004 JiraCon Team Spaces In Confluence
20231004 JiraCon Team Spaces In ConfluenceCraeg Strong
 
20231023 AgileDC Making Strategy Real with Well Crafted Outcomes
20231023 AgileDC Making Strategy Real with Well Crafted Outcomes20231023 AgileDC Making Strategy Real with Well Crafted Outcomes
20231023 AgileDC Making Strategy Real with Well Crafted OutcomesCraeg Strong
 
20230829 DAFITC 2023 Agile For Leaders And Executives
20230829 DAFITC 2023 Agile For Leaders And Executives20230829 DAFITC 2023 Agile For Leaders And Executives
20230829 DAFITC 2023 Agile For Leaders And ExecutivesCraeg Strong
 
20230622 PMINYC Modern Project Management with Lean Kanban
20230622 PMINYC Modern Project Management with Lean Kanban20230622 PMINYC Modern Project Management with Lean Kanban
20230622 PMINYC Modern Project Management with Lean KanbanCraeg Strong
 
20230622 PMIC Leveraging the 4 Disciplines of Execution & Enterprise Kanban t...
20230622 PMIC Leveraging the 4 Disciplines of Execution & Enterprise Kanban t...20230622 PMIC Leveraging the 4 Disciplines of Execution & Enterprise Kanban t...
20230622 PMIC Leveraging the 4 Disciplines of Execution & Enterprise Kanban t...Craeg Strong
 
ADDO 2022 Putting the Sec in DevSecOps for an AWS Lambda Based System
ADDO 2022 Putting the Sec in DevSecOps for an AWS Lambda Based SystemADDO 2022 Putting the Sec in DevSecOps for an AWS Lambda Based System
ADDO 2022 Putting the Sec in DevSecOps for an AWS Lambda Based SystemCraeg Strong
 
Coaching leaders: how to get it right, and how to get it really, really wrong
Coaching leaders: how to get it right, and how to get it really, really wrongCoaching leaders: how to get it right, and how to get it really, really wrong
Coaching leaders: how to get it right, and how to get it really, really wrongCraeg Strong
 
20220607 Introduction to Flight Levels
20220607 Introduction to Flight Levels20220607 Introduction to Flight Levels
20220607 Introduction to Flight LevelsCraeg Strong
 
20220824 Kanban Global Summit 2022 Now You See It! Observing Flow Using [ONLI...
20220824 Kanban Global Summit 2022 Now You See It! Observing Flow Using [ONLI...20220824 Kanban Global Summit 2022 Now You See It! Observing Flow Using [ONLI...
20220824 Kanban Global Summit 2022 Now You See It! Observing Flow Using [ONLI...Craeg Strong
 
20220621 Project Management Innovation Conference Harrisburg PA Seatbelts and...
20220621 Project Management Innovation Conference Harrisburg PA Seatbelts and...20220621 Project Management Innovation Conference Harrisburg PA Seatbelts and...
20220621 Project Management Innovation Conference Harrisburg PA Seatbelts and...Craeg Strong
 
20220216 Lean In Government Conference Harrisburg PA Agile Tool Clash of the ...
20220216 Lean In Government Conference Harrisburg PA Agile Tool Clash of the ...20220216 Lean In Government Conference Harrisburg PA Agile Tool Clash of the ...
20220216 Lean In Government Conference Harrisburg PA Agile Tool Clash of the ...Craeg Strong
 
20220329 Ariel Partners Configuring Jira For Maximum Agility
20220329 Ariel Partners Configuring Jira For Maximum Agility20220329 Ariel Partners Configuring Jira For Maximum Agility
20220329 Ariel Partners Configuring Jira For Maximum AgilityCraeg Strong
 
20220301 Atlassian Team Tour Government ArielPartners Innovative Jira Configu...
20220301 Atlassian Team Tour Government ArielPartners Innovative Jira Configu...20220301 Atlassian Team Tour Government ArielPartners Innovative Jira Configu...
20220301 Atlassian Team Tour Government ArielPartners Innovative Jira Configu...Craeg Strong
 
20211202 North America DevOps Group NADOG Adapting to Covid With Serverless C...
20211202 North America DevOps Group NADOG Adapting to Covid With Serverless C...20211202 North America DevOps Group NADOG Adapting to Covid With Serverless C...
20211202 North America DevOps Group NADOG Adapting to Covid With Serverless C...Craeg Strong
 
20211114 Agile DevOps East Conf 2021 Bringing DevOps to an Entrenched Legacy ...
20211114 Agile DevOps East Conf 2021 Bringing DevOps to an Entrenched Legacy ...20211114 Agile DevOps East Conf 2021 Bringing DevOps to an Entrenched Legacy ...
20211114 Agile DevOps East Conf 2021 Bringing DevOps to an Entrenched Legacy ...Craeg Strong
 
20211202 NADOG Adapting to Covid with Serverless Craeg Strong Ariel Partners
20211202 NADOG Adapting to Covid with Serverless Craeg Strong Ariel Partners20211202 NADOG Adapting to Covid with Serverless Craeg Strong Ariel Partners
20211202 NADOG Adapting to Covid with Serverless Craeg Strong Ariel PartnersCraeg Strong
 
20210520 MiniVAte Conference Agile Transformation at Scale Craeg Strong Ariel...
20210520 MiniVAte Conference Agile Transformation at Scale Craeg Strong Ariel...20210520 MiniVAte Conference Agile Transformation at Scale Craeg Strong Ariel...
20210520 MiniVAte Conference Agile Transformation at Scale Craeg Strong Ariel...Craeg Strong
 

Plus de Craeg Strong (20)

20231019 Flight Levels Bosch Engagement Day 2023 Business Agility With Flight...
20231019 Flight Levels Bosch Engagement Day 2023 Business Agility With Flight...20231019 Flight Levels Bosch Engagement Day 2023 Business Agility With Flight...
20231019 Flight Levels Bosch Engagement Day 2023 Business Agility With Flight...
 
RESPONSIVE TRAINING FOR DIGITAL TRANSFORMATIONS
RESPONSIVE TRAINING FOR DIGITAL TRANSFORMATIONSRESPONSIVE TRAINING FOR DIGITAL TRANSFORMATIONS
RESPONSIVE TRAINING FOR DIGITAL TRANSFORMATIONS
 
20230829 DAFITC 2023 Agile For Leaders And Executives
20230829 DAFITC 2023 Agile For Leaders And Executives20230829 DAFITC 2023 Agile For Leaders And Executives
20230829 DAFITC 2023 Agile For Leaders And Executives
 
20231004 JiraCon Team Spaces In Confluence
20231004 JiraCon Team Spaces In Confluence20231004 JiraCon Team Spaces In Confluence
20231004 JiraCon Team Spaces In Confluence
 
20231023 AgileDC Making Strategy Real with Well Crafted Outcomes
20231023 AgileDC Making Strategy Real with Well Crafted Outcomes20231023 AgileDC Making Strategy Real with Well Crafted Outcomes
20231023 AgileDC Making Strategy Real with Well Crafted Outcomes
 
20230829 DAFITC 2023 Agile For Leaders And Executives
20230829 DAFITC 2023 Agile For Leaders And Executives20230829 DAFITC 2023 Agile For Leaders And Executives
20230829 DAFITC 2023 Agile For Leaders And Executives
 
20230622 PMINYC Modern Project Management with Lean Kanban
20230622 PMINYC Modern Project Management with Lean Kanban20230622 PMINYC Modern Project Management with Lean Kanban
20230622 PMINYC Modern Project Management with Lean Kanban
 
20230622 PMIC Leveraging the 4 Disciplines of Execution & Enterprise Kanban t...
20230622 PMIC Leveraging the 4 Disciplines of Execution & Enterprise Kanban t...20230622 PMIC Leveraging the 4 Disciplines of Execution & Enterprise Kanban t...
20230622 PMIC Leveraging the 4 Disciplines of Execution & Enterprise Kanban t...
 
ADDO 2022 Putting the Sec in DevSecOps for an AWS Lambda Based System
ADDO 2022 Putting the Sec in DevSecOps for an AWS Lambda Based SystemADDO 2022 Putting the Sec in DevSecOps for an AWS Lambda Based System
ADDO 2022 Putting the Sec in DevSecOps for an AWS Lambda Based System
 
Coaching leaders: how to get it right, and how to get it really, really wrong
Coaching leaders: how to get it right, and how to get it really, really wrongCoaching leaders: how to get it right, and how to get it really, really wrong
Coaching leaders: how to get it right, and how to get it really, really wrong
 
20220607 Introduction to Flight Levels
20220607 Introduction to Flight Levels20220607 Introduction to Flight Levels
20220607 Introduction to Flight Levels
 
20220824 Kanban Global Summit 2022 Now You See It! Observing Flow Using [ONLI...
20220824 Kanban Global Summit 2022 Now You See It! Observing Flow Using [ONLI...20220824 Kanban Global Summit 2022 Now You See It! Observing Flow Using [ONLI...
20220824 Kanban Global Summit 2022 Now You See It! Observing Flow Using [ONLI...
 
20220621 Project Management Innovation Conference Harrisburg PA Seatbelts and...
20220621 Project Management Innovation Conference Harrisburg PA Seatbelts and...20220621 Project Management Innovation Conference Harrisburg PA Seatbelts and...
20220621 Project Management Innovation Conference Harrisburg PA Seatbelts and...
 
20220216 Lean In Government Conference Harrisburg PA Agile Tool Clash of the ...
20220216 Lean In Government Conference Harrisburg PA Agile Tool Clash of the ...20220216 Lean In Government Conference Harrisburg PA Agile Tool Clash of the ...
20220216 Lean In Government Conference Harrisburg PA Agile Tool Clash of the ...
 
20220329 Ariel Partners Configuring Jira For Maximum Agility
20220329 Ariel Partners Configuring Jira For Maximum Agility20220329 Ariel Partners Configuring Jira For Maximum Agility
20220329 Ariel Partners Configuring Jira For Maximum Agility
 
20220301 Atlassian Team Tour Government ArielPartners Innovative Jira Configu...
20220301 Atlassian Team Tour Government ArielPartners Innovative Jira Configu...20220301 Atlassian Team Tour Government ArielPartners Innovative Jira Configu...
20220301 Atlassian Team Tour Government ArielPartners Innovative Jira Configu...
 
20211202 North America DevOps Group NADOG Adapting to Covid With Serverless C...
20211202 North America DevOps Group NADOG Adapting to Covid With Serverless C...20211202 North America DevOps Group NADOG Adapting to Covid With Serverless C...
20211202 North America DevOps Group NADOG Adapting to Covid With Serverless C...
 
20211114 Agile DevOps East Conf 2021 Bringing DevOps to an Entrenched Legacy ...
20211114 Agile DevOps East Conf 2021 Bringing DevOps to an Entrenched Legacy ...20211114 Agile DevOps East Conf 2021 Bringing DevOps to an Entrenched Legacy ...
20211114 Agile DevOps East Conf 2021 Bringing DevOps to an Entrenched Legacy ...
 
20211202 NADOG Adapting to Covid with Serverless Craeg Strong Ariel Partners
20211202 NADOG Adapting to Covid with Serverless Craeg Strong Ariel Partners20211202 NADOG Adapting to Covid with Serverless Craeg Strong Ariel Partners
20211202 NADOG Adapting to Covid with Serverless Craeg Strong Ariel Partners
 
20210520 MiniVAte Conference Agile Transformation at Scale Craeg Strong Ariel...
20210520 MiniVAte Conference Agile Transformation at Scale Craeg Strong Ariel...20210520 MiniVAte Conference Agile Transformation at Scale Craeg Strong Ariel...
20210520 MiniVAte Conference Agile Transformation at Scale Craeg Strong Ariel...
 

Dernier

Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024VictoriaMetrics
 
The title is not connected to what is inside
The title is not connected to what is insideThe title is not connected to what is inside
The title is not connected to what is insideshinachiaurasa2
 
%in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park %in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park masabamasaba
 
Architecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the pastArchitecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the pastPapp Krisztián
 
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...WSO2
 
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...masabamasaba
 
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfonteinmasabamasaba
 
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...masabamasaba
 
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyviewmasabamasaba
 
WSO2CON2024 - It's time to go Platformless
WSO2CON2024 - It's time to go PlatformlessWSO2CON2024 - It's time to go Platformless
WSO2CON2024 - It's time to go PlatformlessWSO2
 
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital TransformationWSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital TransformationWSO2
 
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdf
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdfPayment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdf
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdfkalichargn70th171
 
%in Harare+277-882-255-28 abortion pills for sale in Harare
%in Harare+277-882-255-28 abortion pills for sale in Harare%in Harare+277-882-255-28 abortion pills for sale in Harare
%in Harare+277-882-255-28 abortion pills for sale in Hararemasabamasaba
 
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...masabamasaba
 
Artyushina_Guest lecture_YorkU CS May 2024.pptx
Artyushina_Guest lecture_YorkU CS May 2024.pptxArtyushina_Guest lecture_YorkU CS May 2024.pptx
Artyushina_Guest lecture_YorkU CS May 2024.pptxAnnaArtyushina1
 
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...masabamasaba
 
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrainmasabamasaba
 
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...masabamasaba
 
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...panagenda
 
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
Direct Style Effect Systems -The Print[A] Example- A Comprehension AidDirect Style Effect Systems -The Print[A] Example- A Comprehension Aid
Direct Style Effect Systems - The Print[A] Example - A Comprehension AidPhilip Schwarz
 

Dernier (20)

Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
 
The title is not connected to what is inside
The title is not connected to what is insideThe title is not connected to what is inside
The title is not connected to what is inside
 
%in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park %in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park
 
Architecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the pastArchitecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the past
 
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
 
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
 
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
 
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
 
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
 
WSO2CON2024 - It's time to go Platformless
WSO2CON2024 - It's time to go PlatformlessWSO2CON2024 - It's time to go Platformless
WSO2CON2024 - It's time to go Platformless
 
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital TransformationWSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
 
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdf
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdfPayment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdf
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdf
 
%in Harare+277-882-255-28 abortion pills for sale in Harare
%in Harare+277-882-255-28 abortion pills for sale in Harare%in Harare+277-882-255-28 abortion pills for sale in Harare
%in Harare+277-882-255-28 abortion pills for sale in Harare
 
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
 
Artyushina_Guest lecture_YorkU CS May 2024.pptx
Artyushina_Guest lecture_YorkU CS May 2024.pptxArtyushina_Guest lecture_YorkU CS May 2024.pptx
Artyushina_Guest lecture_YorkU CS May 2024.pptx
 
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
 
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
 
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
 
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
 
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
Direct Style Effect Systems -The Print[A] Example- A Comprehension AidDirect Style Effect Systems -The Print[A] Example- A Comprehension Aid
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
 

20161024 Agile DC 2016 Conf Behavior Driven Development Workshop