SlideShare uma empresa Scribd logo
1 de 26
Unit Testing
A (not so) short introduction

Company

LOGO
Alejandro Claro Mosqueda
What is all this stuff?!

AAA
QA key questions

Business Facing

Are we building the right product?

Are we building the product right?
Technology/Implementation Facing

Quality Assurance is more than look for bugs!
Accidental
Defects?

Essential
Defects?

Quality Assurance is more than look for bugs!

Critique Product

Supporting the team

QA key questions
Brian Marick’s test categorization
Test size classification
Ok! But what is a unit test?
A unit test is an automated piece of code that invokes the method being
tested and then checks some assumptions about the logical behavior of
that method.

It can be written easily and runs quickly.
It’s fully automated, trustworthy, readable, isolated, and maintainable.
What are they good for?
 Unit tests prove that your code actually works (at a function/method level).
 You get some kind of “low-level regression-test” suite.
 You can improve the design without breaking it.

 They demonstrate concrete progress.
 Unit tests are a form of sample code.
 It forces you to plan before you code.
 It reduces the cost of bugs.
 It's even better than code inspections.
What are they not for?
 It's not for testing correct inter-operation of multiple subsystems.
 It should be a stand-alone test which is not related to other
subsystems.

 Test against external resources (data base, LDAP, third party libraries, etc).
 Introducing dependencies on external resources or data turns unit tests
into integration tests.
 In many cases you can't write a unit test to reproduce bug appeared in
production.
 It's not regression testing.
Disadvantages
 Big time investment.

For the simple case you lose about 20% of the actual implementation, but for
complicated cases you lose much more.
 Design Impacts.

Sometimes the high-level design is not clear at the start and evolves as you go
along - this will force you to completely redo your test which will generate a big
time lose.
Best Practices!
 Make sure your tests test one thing and one thing only.
 Each unit test should be independent from the other.
 Keep consistent conventions (e.g. AAA). Readability is important for tests.
 Name your unit tests clearly and consistently.
 Separate you concerns. Extract layers to improve the design.

 Avoid unnecessary preconditions.
 Fake behavior with mocks or stubs to concentrate on test scenario.
 Check code coverage during testing.
 Don’t unit-test configuration settings.
 Tests should run automatically to provide continuous feedback. Keep the bar green to

keep the code clean!
Isolate!
State testing asserts properties on an object.
Interaction testing is testing how an object sends input to or receives input from other
objects — how that object interacts with other objects.
Stub is a controllable replacement for an existing dependency in the system. By using a
stub, you can test your code without dealing with the dependency directly.
Mock object is a fake object in the system that decides whether the unit test has passed
or failed. It does so by verifying whether the object under test interacted as expected
with the fake object.
Naming by Unit Of Work

MethodUnderTest_Input_ExpectedOutput
MethodUnderTest_LogicalAction_ExpectedChangeInBehavior
MethodUnderTest_ActionOrInput_ExepectedCallToThirdParty

Addition_PositiveNumbers_ReturnsSum()
Addition_WhenCalled_ResetsTheNextSum()
Addition_NegativeNumbers_CallsLogger()
Arrange-Act-Assert (AAA) Pattern
Arrange: setup everything needed for the running the tested code. This includes any
initialization of dependencies, mocks and data needed for the test to run.
Act: Invoke the code under test.
Assert: Specify the pass criteria for the test, which fails it if not met.
Bad Practices and anti-patterns
 Static methods. Static methods are death to unit testability because they cannot
be mocked or stubbed.

 Relying on external resources.

 Unit test for GUI.
 Constrained test order.

 Hidden test call.

 Mutable shared-state.

 Multiple asserts.
Test fixture (Harness)
Test fixture refers to the fixed state used as a baseline for running tests. The
purpose of a test fixture is to ensure that there is a well known and fixed
environment in which tests are run so that results are repeatable.
Test fixture process
When do you write the test?

After/During coding
 Focus on code.
 Thinking about algorithm.

 More refactoring.
 Easier initially.
When do you write the test?

Before coding (TDD, BDD)
 Focus on requirements.

 Thinking about how code will be
consumed.
 Stop coding when reqs met.
 Harder initially.
Test driven development (TDD)
“TDD is a design process, not a testing process.”
Acceptance vs Unit testing
ATs and UTs are the same though, right?
 Both can be written before implementation.
 Both should be automated by containing assertions for validating expected
results.
 Both typically use fixture setup and teardown code to run before and after the
execution of the tests.
 Both can be implemented using a framework.
Black-box and White-box testing
Careful - They are NOT the same!
Acceptance test is owned and defined by the customer to verify that a
story is complete and correct.

 ATs must be defined in a language familiar to the customer:
 Generic enough to capture requirements
 Abstract enough to be maintainable
 Simple enough to be easily understood
 ATs should be defined and run using a tool accessible to the customer.
 ATs encourage the customer to consider the all aspects of user
experience.
 ATs test interaction of all layers in the system.
 ATs require external systems to be operating correctly.
Acceptance and Unit testing relation

setup

ATD

AT
impl
teardown
setup

ATD

AT
impl

Application Interface

Test
Implementation

Acceptance Test Client

Acceptance
Test Definition

Units
Implementation

Unit Test
Fixture

Setup
impl

UT

impl

impl

UT

UT
impl

teardown

UT

setup

ATD

impl

AT
impl

UT

impl

UT

teardown

Mock

Teardown
Acceptance Test Driven Development (ATDD)
Let’s talk!
Motivation is what gets you starting; practice is what
keeps you going

Mais conteúdo relacionado

Mais procurados

Unit testing best practices
Unit testing best practicesUnit testing best practices
Unit testing best practices
nickokiss
 
Unit Testing And Mocking
Unit Testing And MockingUnit Testing And Mocking
Unit Testing And Mocking
Joe Wilson
 
UFT Automation Framework Introduction
UFT Automation Framework IntroductionUFT Automation Framework Introduction
UFT Automation Framework Introduction
Himal Bandara
 
Testing concepts ppt
Testing concepts pptTesting concepts ppt
Testing concepts ppt
Rathna Priya
 

Mais procurados (20)

Unit testing
Unit testing Unit testing
Unit testing
 
Hands On with Maven
Hands On with MavenHands On with Maven
Hands On with Maven
 
Selenium-Locators
Selenium-LocatorsSelenium-Locators
Selenium-Locators
 
Software Testing
Software TestingSoftware Testing
Software Testing
 
Unit testing best practices
Unit testing best practicesUnit testing best practices
Unit testing best practices
 
Jest
JestJest
Jest
 
Selenium Locators
Selenium LocatorsSelenium Locators
Selenium Locators
 
Unit Testing And Mocking
Unit Testing And MockingUnit Testing And Mocking
Unit Testing And Mocking
 
테스트자동화와 TDD
테스트자동화와 TDD테스트자동화와 TDD
테스트자동화와 TDD
 
UFT Automation Framework Introduction
UFT Automation Framework IntroductionUFT Automation Framework Introduction
UFT Automation Framework Introduction
 
Selenium IDE LOCATORS
Selenium IDE LOCATORSSelenium IDE LOCATORS
Selenium IDE LOCATORS
 
Verification and validation process in software testing
Verification and validation process in software testingVerification and validation process in software testing
Verification and validation process in software testing
 
Node.js
Node.jsNode.js
Node.js
 
Unit testing with JUnit
Unit testing with JUnitUnit testing with JUnit
Unit testing with JUnit
 
우리 제품의 검증 프로세스 소개 자료
우리 제품의 검증 프로세스 소개 자료 우리 제품의 검증 프로세스 소개 자료
우리 제품의 검증 프로세스 소개 자료
 
Testing concepts ppt
Testing concepts pptTesting concepts ppt
Testing concepts ppt
 
Java spring ppt
Java spring pptJava spring ppt
Java spring ppt
 
Unit Testing
Unit TestingUnit Testing
Unit Testing
 
Introduction to Automation Testing
Introduction to Automation TestingIntroduction to Automation Testing
Introduction to Automation Testing
 
TestNG Framework
TestNG Framework TestNG Framework
TestNG Framework
 

Semelhante a Unit testing - An introduction

Basic software-testing-concepts
Basic software-testing-conceptsBasic software-testing-concepts
Basic software-testing-concepts
medsherb
 
Agile Testing Pasadena JUG Aug2009
Agile Testing Pasadena JUG Aug2009Agile Testing Pasadena JUG Aug2009
Agile Testing Pasadena JUG Aug2009
Grig Gheorghiu
 
softwaretestingppt-120810095500-phpapp02 (1).pdf
softwaretestingppt-120810095500-phpapp02 (1).pdfsoftwaretestingppt-120810095500-phpapp02 (1).pdf
softwaretestingppt-120810095500-phpapp02 (1).pdf
BabaShaikh3
 

Semelhante a Unit testing - An introduction (20)

TDD Best Practices
TDD Best PracticesTDD Best Practices
TDD Best Practices
 
Why Unit Testingl
Why Unit TestinglWhy Unit Testingl
Why Unit Testingl
 
Why unit testingl
Why unit testinglWhy unit testingl
Why unit testingl
 
Why Unit Testingl
Why Unit TestinglWhy Unit Testingl
Why Unit Testingl
 
Testing and Mocking Object - The Art of Mocking.
Testing and Mocking Object - The Art of Mocking.Testing and Mocking Object - The Art of Mocking.
Testing and Mocking Object - The Art of Mocking.
 
assertYourself - Breaking the Theories and Assumptions of Unit Testing in Flex
assertYourself - Breaking the Theories and Assumptions of Unit Testing in FlexassertYourself - Breaking the Theories and Assumptions of Unit Testing in Flex
assertYourself - Breaking the Theories and Assumptions of Unit Testing in Flex
 
Effective unit testing
Effective unit testingEffective unit testing
Effective unit testing
 
Test driven development
Test driven developmentTest driven development
Test driven development
 
Testing In Software Engineering
Testing In Software EngineeringTesting In Software Engineering
Testing In Software Engineering
 
Unit testing
Unit testingUnit testing
Unit testing
 
TDD Workshop UTN 2012
TDD Workshop UTN 2012TDD Workshop UTN 2012
TDD Workshop UTN 2012
 
Basic software-testing-concepts
Basic software-testing-conceptsBasic software-testing-concepts
Basic software-testing-concepts
 
Agile Testing Pasadena JUG Aug2009
Agile Testing Pasadena JUG Aug2009Agile Testing Pasadena JUG Aug2009
Agile Testing Pasadena JUG Aug2009
 
Testing 3: Types Of Tests That May Be Required
Testing 3: Types Of Tests That May Be RequiredTesting 3: Types Of Tests That May Be Required
Testing 3: Types Of Tests That May Be Required
 
Testing
TestingTesting
Testing
 
Types of testing
Types of testingTypes of testing
Types of testing
 
Unit testing
Unit testingUnit testing
Unit testing
 
Software Testing Presentation
Software Testing PresentationSoftware Testing Presentation
Software Testing Presentation
 
Software Testing or Quality Assurance
Software Testing or Quality AssuranceSoftware Testing or Quality Assurance
Software Testing or Quality Assurance
 
softwaretestingppt-120810095500-phpapp02 (1).pdf
softwaretestingppt-120810095500-phpapp02 (1).pdfsoftwaretestingppt-120810095500-phpapp02 (1).pdf
softwaretestingppt-120810095500-phpapp02 (1).pdf
 

Mais de Alejandro Claro Mosqueda (6)

Metodos de monte carlo en mecánica estadistica
Metodos de monte carlo en mecánica estadisticaMetodos de monte carlo en mecánica estadistica
Metodos de monte carlo en mecánica estadistica
 
Introducción a los solitones - Presentación de algunas soluciones solitónicas
Introducción a los solitones - Presentación de algunas soluciones solitónicasIntroducción a los solitones - Presentación de algunas soluciones solitónicas
Introducción a los solitones - Presentación de algunas soluciones solitónicas
 
Tunelaje de solitones
Tunelaje de solitonesTunelaje de solitones
Tunelaje de solitones
 
Algoritmos aproximados - El problema de la mochila 0-1
Algoritmos aproximados - El problema de la mochila 0-1Algoritmos aproximados - El problema de la mochila 0-1
Algoritmos aproximados - El problema de la mochila 0-1
 
Software design - Write solid software with the ideal chalk
Software design - Write solid software with the  ideal chalkSoftware design - Write solid software with the  ideal chalk
Software design - Write solid software with the ideal chalk
 
Lean thinking and the agile culture
Lean thinking and the agile cultureLean thinking and the agile culture
Lean thinking and the agile culture
 

Último

Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
vu2urc
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
giselly40
 

Último (20)

How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdf
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
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
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
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
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 

Unit testing - An introduction

  • 1. Unit Testing A (not so) short introduction Company LOGO Alejandro Claro Mosqueda
  • 2. What is all this stuff?! AAA
  • 3. QA key questions Business Facing Are we building the right product? Are we building the product right? Technology/Implementation Facing Quality Assurance is more than look for bugs!
  • 4. Accidental Defects? Essential Defects? Quality Assurance is more than look for bugs! Critique Product Supporting the team QA key questions
  • 5. Brian Marick’s test categorization
  • 7. Ok! But what is a unit test? A unit test is an automated piece of code that invokes the method being tested and then checks some assumptions about the logical behavior of that method. It can be written easily and runs quickly. It’s fully automated, trustworthy, readable, isolated, and maintainable.
  • 8. What are they good for?  Unit tests prove that your code actually works (at a function/method level).  You get some kind of “low-level regression-test” suite.  You can improve the design without breaking it.  They demonstrate concrete progress.  Unit tests are a form of sample code.  It forces you to plan before you code.  It reduces the cost of bugs.  It's even better than code inspections.
  • 9. What are they not for?  It's not for testing correct inter-operation of multiple subsystems.  It should be a stand-alone test which is not related to other subsystems.  Test against external resources (data base, LDAP, third party libraries, etc).  Introducing dependencies on external resources or data turns unit tests into integration tests.  In many cases you can't write a unit test to reproduce bug appeared in production.  It's not regression testing.
  • 10. Disadvantages  Big time investment. For the simple case you lose about 20% of the actual implementation, but for complicated cases you lose much more.  Design Impacts. Sometimes the high-level design is not clear at the start and evolves as you go along - this will force you to completely redo your test which will generate a big time lose.
  • 11. Best Practices!  Make sure your tests test one thing and one thing only.  Each unit test should be independent from the other.  Keep consistent conventions (e.g. AAA). Readability is important for tests.  Name your unit tests clearly and consistently.  Separate you concerns. Extract layers to improve the design.  Avoid unnecessary preconditions.  Fake behavior with mocks or stubs to concentrate on test scenario.  Check code coverage during testing.  Don’t unit-test configuration settings.  Tests should run automatically to provide continuous feedback. Keep the bar green to keep the code clean!
  • 12. Isolate! State testing asserts properties on an object. Interaction testing is testing how an object sends input to or receives input from other objects — how that object interacts with other objects. Stub is a controllable replacement for an existing dependency in the system. By using a stub, you can test your code without dealing with the dependency directly. Mock object is a fake object in the system that decides whether the unit test has passed or failed. It does so by verifying whether the object under test interacted as expected with the fake object.
  • 13. Naming by Unit Of Work MethodUnderTest_Input_ExpectedOutput MethodUnderTest_LogicalAction_ExpectedChangeInBehavior MethodUnderTest_ActionOrInput_ExepectedCallToThirdParty Addition_PositiveNumbers_ReturnsSum() Addition_WhenCalled_ResetsTheNextSum() Addition_NegativeNumbers_CallsLogger()
  • 14. Arrange-Act-Assert (AAA) Pattern Arrange: setup everything needed for the running the tested code. This includes any initialization of dependencies, mocks and data needed for the test to run. Act: Invoke the code under test. Assert: Specify the pass criteria for the test, which fails it if not met.
  • 15. Bad Practices and anti-patterns  Static methods. Static methods are death to unit testability because they cannot be mocked or stubbed.  Relying on external resources.  Unit test for GUI.  Constrained test order.  Hidden test call.  Mutable shared-state.  Multiple asserts.
  • 16. Test fixture (Harness) Test fixture refers to the fixed state used as a baseline for running tests. The purpose of a test fixture is to ensure that there is a well known and fixed environment in which tests are run so that results are repeatable.
  • 18. When do you write the test? After/During coding  Focus on code.  Thinking about algorithm.  More refactoring.  Easier initially.
  • 19. When do you write the test? Before coding (TDD, BDD)  Focus on requirements.  Thinking about how code will be consumed.  Stop coding when reqs met.  Harder initially.
  • 20. Test driven development (TDD) “TDD is a design process, not a testing process.”
  • 21. Acceptance vs Unit testing ATs and UTs are the same though, right?  Both can be written before implementation.  Both should be automated by containing assertions for validating expected results.  Both typically use fixture setup and teardown code to run before and after the execution of the tests.  Both can be implemented using a framework.
  • 23. Careful - They are NOT the same! Acceptance test is owned and defined by the customer to verify that a story is complete and correct.  ATs must be defined in a language familiar to the customer:  Generic enough to capture requirements  Abstract enough to be maintainable  Simple enough to be easily understood  ATs should be defined and run using a tool accessible to the customer.  ATs encourage the customer to consider the all aspects of user experience.  ATs test interaction of all layers in the system.  ATs require external systems to be operating correctly.
  • 24. Acceptance and Unit testing relation setup ATD AT impl teardown setup ATD AT impl Application Interface Test Implementation Acceptance Test Client Acceptance Test Definition Units Implementation Unit Test Fixture Setup impl UT impl impl UT UT impl teardown UT setup ATD impl AT impl UT impl UT teardown Mock Teardown
  • 25. Acceptance Test Driven Development (ATDD)
  • 26. Let’s talk! Motivation is what gets you starting; practice is what keeps you going