SlideShare uma empresa Scribd logo
1 de 51
TEST DRIVEN DEVELOPMENT
Hercules Lemke Merscher - @hlmerscher
O que é?
http://i-love-my-life.com/wp-content/uploads/2011/03/doubt.jpg
TÉCNICA
https://media.licdn.com/mpr/mpr/shrinknp_800_800/AAEAAQAAAAAAAASQAAAAJDllYzc1ZjgxLTliNDQtNGU2MS1hNDg0LTFiOWZlNTQ4N2Q5ZA.png
TDD E TESTE AUTOMATIZADO. SINÔNIMOS?
https://images.rapgenius.com/e7c0c514d4e7564079c2e6b0c8d547b5.540x350x1.jpg
POR QUÊ?
https://imgflip.com/s/meme/Question-Rage-Face.jpg
ERROS RECORRENTES
https://upload.wikimedia.org/wikipedia/commons/3/3b/Windows_9X_BSOD.png
O COMPUTADOR É MAIS RÁPIDO http://www.seuseriado.com/wp-content/uploads/2016/04/The-Flash-2ª-Temporada.jpg
O COMPUTADOR NÃO CANSA
http://2.bp.blogspot.com/-mF5paUPo6tQ/UkeaGETMkWI/AAAAAAAAAYA/L6AnHHKP8uc/s1600/52636309+(1).png
LEI DE MURPHY
http://shedka.com/wp-content/uploads/2015/06/tostada-1000x666.jpg
BUG’S EM PRODUÇÃO
http://www.dan-dare.org/FreeFun/Images/CartoonsMoviesTV/BugsLifeWallpaper800.jpg
MEDO DE TOCAR NO CÓDIGO
https://councillorpadraigmcshane.files.wordpress.com/2012/11/scooby-and-shaggy-afraid-scooby-doo-2992126-852-480.jpg
CORREÇÕES QUE GERAM MAIS BUG’S
http://web.pdx.edu/~cem3/looney/img/coyoterocket.png
http://iblasquez.github.io/presentation_TDD_CodingDojo/TDD_Mantra.png
VERMELHO
http://static.maciverinstitute.com/F%20Letter%20Grade-cropped-proto-custom_4-thumb-618xauto-7419.jpg
VERDE
https://www.exceptionnotfound.net/content/images/2015/04/the-coder.jpg
REFATORA
http://cdn.hitfix.com/photos/6214402/HannibalLecterSOTL.jpg
E A PARTE DO CÓDIGO, JÁ CHEGOU?
https://i.ytimg.com/vi/ovm2zkuqJD8/maxresdefault.jpg
PRIMEEEIIIIROOOO...
ESCREVA O TESTE
http://2.bp.blogspot.com/-S8U-dF2WTzk/UlLk0q5jy4I/AAAAAAAAC4M/OFlBxMqwCYA/s1600/mask.jpg
TESTE
test('Product instantiates a new product', (t) => {
let product = new Product();
t.ok(product instanceof Product);
t.end();
});
TESTE FALHA
ReferenceError: Product is not defined
CÓDIGO
function Product() {
}
TESTE PASSA
# Product instantiates a new product
ok 1 should be truthy
1..1
# tests 1
# pass 1
# ok
BABY STEPS
http://www.clipartkid.com/images/300/download-baby-steps-clipart-LA7TaY-
clipart.jpg
TESTE
test('Product#price zero by default', (t) => {
let product = new Product();
t.equal(product.price, 0);
t.end();
});
TESTE FALHA
# Product#price zero by default
not ok 2 should be equal
---
operator: equal
expected: 0
actual: undefined
CÓDIGO
function Product() {
this.price = 0;
}
TESTE PASSA
# Product#price zero by default
ok 2 should be equal
1..2
# tests 2
# pass 2
# ok
TESTE
test('Product#quantity zero by default', (t) => {
let product = new Product();
t.equal(product.quantity, 0);
t.end();
});
TESTE FALHA
# Product#quantity zero by default
not ok 3 should be equal
---
operator: equal
expected: 0
actual: undefined
CÓDIGO
function Product() {
this.price = 0;
this.quantity = 0;
}
TESTE PASSA
# Product#quantity zero by default
ok 3 should be equal
1..3
# tests 3
# pass 3
# ok
TESTE
test('Product#total calculates amount', (t) => {
let product = Object.assign(
new Product(), { price: 10, quantity: 2 });
t.equal(product.total(), 20);
t.end();
});
TESTE FALHA
t.equal(product.total(), 20);
^
TypeError: product.total is not a function
CÓDIGO
function Product() {
this.price = 0;
this.quantity = 0;
this.total = () => this.price * this.quantity;
}
TESTE PASSA
# Product#total calculates amount
ok 4 should be equal
1..4
# tests 4
# pass 4
# ok
COM TDD EU AGARANTCHÍU !!!
https://img.buzzfeed.com/buzzfeed-static/static/2015-03/3/10/enhanced/webdr14/enhanced-buzz-29154-1425395469-14.jpg
TDD É SOBRE FEEDBACK
http://www.sacadasdecarreira.com.br/files/2015/12/design-feedback-tips.png
TESTE UNITÁRIO
http://unity-coding.slashgames.org/wp-content/uploads/unit-test.jpg
TESTE DE REGRESSÃO
https://d.ibtimes.co.uk/en/full/1396036/delorean.jp
TESTE DE INTEGRAÇÃO
http://mlb-s1-p.mlstatic.com/15139-MLB20096270752_052014-O.jpg
TESTE DE ACEITAÇÃO
http://aaronacceptance.ca/wp-content/uploads/2015/07/Loan-Approval_Aaron_Acceptance_256.png
MOCKS, STUBS E FAKES
http://goias24horas.com.br/wp-content/uploads/2013/08/marionete.jpg
CÓDIGO DIFÍCIL
DE TESTAR
É UM MAU SINAL?
QUANTAS
ASSERTIVAS
POR TESTE?
DEVO USAR
PASSOS DE BEBÊ
SEMPRE?
PRECISO
DA APROVAÇÃO DO MEU
CHEFE PARA
ESCREVER TESTES?
http://cdn.business2community.com/wp-content/uploads/2016/01/Godfather-300x169-3.png-3.png
COBERTURA
COBERTURA
https://github.com/hlmerscher/dojo-onde
http://www.maonamassasalgadosecia.com.br/uploads/widget/image/512/170/51217096/mao-na-massa.png
REFERÊNCIAS
OBRIGADO!
www.herculesdev.com.br

Mais conteúdo relacionado

Mais procurados

Anatomy of a web page
Anatomy of a web pageAnatomy of a web page
Anatomy of a web page
dharvey100
 
Souders WPO Web2.0Expo
Souders WPO Web2.0ExpoSouders WPO Web2.0Expo
Souders WPO Web2.0Expo
guest0b3d92d
 
Real World Technology -- AASL Preconference, ALA Annual 2013
Real World Technology -- AASL Preconference, ALA Annual 2013Real World Technology -- AASL Preconference, ALA Annual 2013
Real World Technology -- AASL Preconference, ALA Annual 2013
Wendy Stephens
 
One Trick 2 0 Tools Tds March 2011a
One Trick 2 0 Tools Tds March 2011aOne Trick 2 0 Tools Tds March 2011a
One Trick 2 0 Tools Tds March 2011a
Ann Walker Smalley
 
Creating e learning mashups
Creating e learning mashupsCreating e learning mashups
Creating e learning mashups
Neil Mehta
 
High Performance Mobile (SF/SV Web Perf)
High Performance Mobile (SF/SV Web Perf)High Performance Mobile (SF/SV Web Perf)
High Performance Mobile (SF/SV Web Perf)
Steve Souders
 
Utter failures and lessons remained unlearned
Utter failures and lessons remained unlearnedUtter failures and lessons remained unlearned
Utter failures and lessons remained unlearned
Ilari Henrik Aegerter
 

Mais procurados (20)

Coaching Nightmares: Lessons We Can Learn From Gordon Ramsay
Coaching Nightmares: Lessons We Can Learn From Gordon RamsayCoaching Nightmares: Lessons We Can Learn From Gordon Ramsay
Coaching Nightmares: Lessons We Can Learn From Gordon Ramsay
 
Anatomy of a web page
Anatomy of a web pageAnatomy of a web page
Anatomy of a web page
 
Souders WPO Web2.0Expo
Souders WPO Web2.0ExpoSouders WPO Web2.0Expo
Souders WPO Web2.0Expo
 
FailAgility: Recognising and Resetting the Agile Boundaries
FailAgility: Recognising and Resetting the Agile BoundariesFailAgility: Recognising and Resetting the Agile Boundaries
FailAgility: Recognising and Resetting the Agile Boundaries
 
How to spot the dinosaur managers at work
How to spot the dinosaur managers at workHow to spot the dinosaur managers at work
How to spot the dinosaur managers at work
 
Metrics of Joy
Metrics of JoyMetrics of Joy
Metrics of Joy
 
Making Data Useful
Making Data Useful Making Data Useful
Making Data Useful
 
Mind the Gap: Realising the Value of Agility
Mind the Gap: Realising the Value of AgilityMind the Gap: Realising the Value of Agility
Mind the Gap: Realising the Value of Agility
 
Curley_Bryce_DMP2
Curley_Bryce_DMP2Curley_Bryce_DMP2
Curley_Bryce_DMP2
 
Visual Management: Leading With What You Can See
Visual Management: Leading With What You Can SeeVisual Management: Leading With What You Can See
Visual Management: Leading With What You Can See
 
CloudCamp London 8 Mar 2018 - Douglas Adams
CloudCamp London 8 Mar 2018 - Douglas AdamsCloudCamp London 8 Mar 2018 - Douglas Adams
CloudCamp London 8 Mar 2018 - Douglas Adams
 
Real World Technology -- AASL Preconference, ALA Annual 2013
Real World Technology -- AASL Preconference, ALA Annual 2013Real World Technology -- AASL Preconference, ALA Annual 2013
Real World Technology -- AASL Preconference, ALA Annual 2013
 
One Trick 2 0 Tools Tds March 2011a
One Trick 2 0 Tools Tds March 2011aOne Trick 2 0 Tools Tds March 2011a
One Trick 2 0 Tools Tds March 2011a
 
Play framework 2.0 Introduction
Play framework 2.0 IntroductionPlay framework 2.0 Introduction
Play framework 2.0 Introduction
 
7 Deadly Sins of Agile Software Test Automation
7 Deadly Sins of Agile Software Test Automation7 Deadly Sins of Agile Software Test Automation
7 Deadly Sins of Agile Software Test Automation
 
Benjamin medina Slideshow
Benjamin medina SlideshowBenjamin medina Slideshow
Benjamin medina Slideshow
 
High Performance HTML5 (SF HTML5 UG)
High Performance HTML5 (SF HTML5 UG)High Performance HTML5 (SF HTML5 UG)
High Performance HTML5 (SF HTML5 UG)
 
Creating e learning mashups
Creating e learning mashupsCreating e learning mashups
Creating e learning mashups
 
High Performance Mobile (SF/SV Web Perf)
High Performance Mobile (SF/SV Web Perf)High Performance Mobile (SF/SV Web Perf)
High Performance Mobile (SF/SV Web Perf)
 
Utter failures and lessons remained unlearned
Utter failures and lessons remained unlearnedUtter failures and lessons remained unlearned
Utter failures and lessons remained unlearned
 

Semelhante a Test Driven Development

Logan composition (2)
Logan composition (2)Logan composition (2)
Logan composition (2)
loganm
 
Mborell newsilent week6
Mborell newsilent week6Mborell newsilent week6
Mborell newsilent week6
mborell
 
Owasp hyd 28_dec2013_opensamm
Owasp hyd 28_dec2013_opensammOwasp hyd 28_dec2013_opensamm
Owasp hyd 28_dec2013_opensamm
M S Sripati
 
Command keynote! part 2p2p2
Command keynote! part 2p2p2Command keynote! part 2p2p2
Command keynote! part 2p2p2
ambersweet95
 

Semelhante a Test Driven Development (20)

Logan composition (2)
Logan composition (2)Logan composition (2)
Logan composition (2)
 
Testing Like a Pro - Chef Infrastructure Testing
Testing Like a Pro - Chef Infrastructure TestingTesting Like a Pro - Chef Infrastructure Testing
Testing Like a Pro - Chef Infrastructure Testing
 
CV writing
CV writingCV writing
CV writing
 
Mborell newsilent week6
Mborell newsilent week6Mborell newsilent week6
Mborell newsilent week6
 
Owasp hyd 28_dec2013_opensamm
Owasp hyd 28_dec2013_opensammOwasp hyd 28_dec2013_opensamm
Owasp hyd 28_dec2013_opensamm
 
NULL - OpenSAMM
NULL - OpenSAMMNULL - OpenSAMM
NULL - OpenSAMM
 
Wind Pad 100w NUI interface PK
Wind Pad 100w NUI interface PKWind Pad 100w NUI interface PK
Wind Pad 100w NUI interface PK
 
Social Media Confusion? How to Choose the Right Network
Social Media Confusion? How to Choose the Right NetworkSocial Media Confusion? How to Choose the Right Network
Social Media Confusion? How to Choose the Right Network
 
[IGC 2017] 잔디소프트 윤세민 - HTML5, 크로스플랫폼, 그리고 MMORPG feat. 매드월드
[IGC 2017] 잔디소프트 윤세민 - HTML5, 크로스플랫폼, 그리고 MMORPG feat. 매드월드[IGC 2017] 잔디소프트 윤세민 - HTML5, 크로스플랫폼, 그리고 MMORPG feat. 매드월드
[IGC 2017] 잔디소프트 윤세민 - HTML5, 크로스플랫폼, 그리고 MMORPG feat. 매드월드
 
Empowering DevOps with Cloud Foundry
Empowering DevOps with Cloud FoundryEmpowering DevOps with Cloud Foundry
Empowering DevOps with Cloud Foundry
 
関於鋼琴
関於鋼琴関於鋼琴
関於鋼琴
 
Ignite presentation
Ignite presentationIgnite presentation
Ignite presentation
 
Computer
ComputerComputer
Computer
 
Speed is Essential for a Great Web Experience
Speed is Essential for a Great Web ExperienceSpeed is Essential for a Great Web Experience
Speed is Essential for a Great Web Experience
 
Differentiated structures
Differentiated structuresDifferentiated structures
Differentiated structures
 
Apache Hadoop Ecosystem (based on an exemplary data-driven…
Apache Hadoop Ecosystem (based on an exemplary data-driven…Apache Hadoop Ecosystem (based on an exemplary data-driven…
Apache Hadoop Ecosystem (based on an exemplary data-driven…
 
Presentacion de percy keyro mancilla pinedo
Presentacion de percy keyro mancilla pinedoPresentacion de percy keyro mancilla pinedo
Presentacion de percy keyro mancilla pinedo
 
Agile Coaching Nightmares: Lessons We Can Learn From Gordon Ramsay
Agile Coaching Nightmares: Lessons We Can Learn From Gordon RamsayAgile Coaching Nightmares: Lessons We Can Learn From Gordon Ramsay
Agile Coaching Nightmares: Lessons We Can Learn From Gordon Ramsay
 
REST for .NET - Introduction to ASP.NET Web API
REST for .NET - Introduction to ASP.NET Web APIREST for .NET - Introduction to ASP.NET Web API
REST for .NET - Introduction to ASP.NET Web API
 
Command keynote! part 2p2p2
Command keynote! part 2p2p2Command keynote! part 2p2p2
Command keynote! part 2p2p2
 

Último

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
VictoriaMetrics
 
%+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
 
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
chiefasafspells
 
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
masabamasaba
 
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
masabamasaba
 
%+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
 

Último (20)

VTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learnVTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learn
 
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
 
%in Rustenburg+277-882-255-28 abortion pills for sale in Rustenburg
%in Rustenburg+277-882-255-28 abortion pills for sale in Rustenburg%in Rustenburg+277-882-255-28 abortion pills for sale in Rustenburg
%in Rustenburg+277-882-255-28 abortion pills for sale in Rustenburg
 
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
 
%+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...
 
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
 
%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand
 
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
 
tonesoftg
tonesoftgtonesoftg
tonesoftg
 
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...
 
%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in soweto%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in soweto
 
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
 
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
 
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
 
What Goes Wrong with Language Definitions and How to Improve the Situation
What Goes Wrong with Language Definitions and How to Improve the SituationWhat Goes Wrong with Language Definitions and How to Improve the Situation
What Goes Wrong with Language Definitions and How to Improve the Situation
 
WSO2CON 2024 - WSO2's Digital Transformation Journey with Choreo: A Platforml...
WSO2CON 2024 - WSO2's Digital Transformation Journey with Choreo: A Platforml...WSO2CON 2024 - WSO2's Digital Transformation Journey with Choreo: A Platforml...
WSO2CON 2024 - WSO2's Digital Transformation Journey with Choreo: A Platforml...
 
WSO2CON 2024 - API Management Usage at La Poste and Its Impact on Business an...
WSO2CON 2024 - API Management Usage at La Poste and Its Impact on Business an...WSO2CON 2024 - API Management Usage at La Poste and Its Impact on Business an...
WSO2CON 2024 - API Management Usage at La Poste and Its Impact on Business an...
 
WSO2CON 2024 Slides - Open Source to SaaS
WSO2CON 2024 Slides - Open Source to SaaSWSO2CON 2024 Slides - Open Source to SaaS
WSO2CON 2024 Slides - Open Source to SaaS
 
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
 
%+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...
 

Test Driven Development

Notas do Editor

  1. TDD é uma técnica onde testes automatizados são utilizados como ferramenta durante o desenvolvimento.
  2. sexta-feira, 17:50h, depois de fazer aquela lógica mega complexa, e tem de testar manualmente com várias permutações de valores
  3. Cenário, ação e validação.
  4. Um teste com muitas assertivas pode estar apontando um objeto/método que talvez precise ser dividido.
  5. Um teste com muitas assertivas pode estar apontando um objeto/método que talvez precise ser dividido.
  6. Um teste com muitas assertivas pode estar apontando um objeto/método que talvez precise ser dividido.