SlideShare a Scribd company logo
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

More Related Content

What's hot (20)

PPTX
OOP Introduction with java programming language
Md.Al-imran Roton
 
PPTX
Introduction to React JS for beginners
Varun Raj
 
PPSX
Java Object Oriented Programming
University of Potsdam
 
PPTX
Constructor in java
Hitesh Kumar
 
PPTX
Advance Java Topics (J2EE)
slire
 
PDF
JAVA PPT -3 BY ADI.pdf
Prof. Dr. K. Adisesha
 
PPTX
Java script errors & exceptions handling
AbhishekMondal42
 
PPTX
introduction to c #
Sireesh K
 
PPT
Advanced PHPUnit Testing
Mike Lively
 
PPS
Coding Best Practices
mh_azad
 
PDF
Android Programming Basics
Eueung Mulyana
 
PPTX
Selenium
Rakshitha Raviprakash
 
PDF
JavaScript Programming
Sehwan Noh
 
PPTX
Intro to React
Justin Reock
 
PDF
Object oriented programming With C#
Youssef Mohammed Abohaty
 
PDF
3. Java Script
Jalpesh Vasa
 
PPT
JavaScript Data Types
Charles Russell
 
PPT
Constructor and destructor in C++
Lovely Professional University
 
PDF
Unit Testing in Angular
Knoldus Inc.
 
PPTX
Unit Testng with PHP Unit - A Step by Step Training
Ram Awadh Prasad, PMP
 
OOP Introduction with java programming language
Md.Al-imran Roton
 
Introduction to React JS for beginners
Varun Raj
 
Java Object Oriented Programming
University of Potsdam
 
Constructor in java
Hitesh Kumar
 
Advance Java Topics (J2EE)
slire
 
JAVA PPT -3 BY ADI.pdf
Prof. Dr. K. Adisesha
 
Java script errors & exceptions handling
AbhishekMondal42
 
introduction to c #
Sireesh K
 
Advanced PHPUnit Testing
Mike Lively
 
Coding Best Practices
mh_azad
 
Android Programming Basics
Eueung Mulyana
 
JavaScript Programming
Sehwan Noh
 
Intro to React
Justin Reock
 
Object oriented programming With C#
Youssef Mohammed Abohaty
 
3. Java Script
Jalpesh Vasa
 
JavaScript Data Types
Charles Russell
 
Constructor and destructor in C++
Lovely Professional University
 
Unit Testing in Angular
Knoldus Inc.
 
Unit Testng with PHP Unit - A Step by Step Training
Ram Awadh Prasad, PMP
 

Similar to Unit testing - An introduction (20)

PPTX
TDD Best Practices
Attila Bertók
 
PPS
Why Unit Testingl
priya_trivedi
 
PPS
Why Unit Testingl
priya_trivedi
 
PPS
Why unit testingl
Priya Sharma
 
PPS
Unit Testing
Anuj Arora
 
PPT
Testing and Mocking Object - The Art of Mocking.
Deepak Singhvi
 
PPTX
assertYourself - Breaking the Theories and Assumptions of Unit Testing in Flex
michael.labriola
 
ODP
Effective unit testing
Roberto Casadei
 
PPTX
Test driven development
namkha87
 
PDF
Testing In Software Engineering
kiansahafi
 
PPT
Unit testing
Murugesan Nataraj
 
PDF
TDD Workshop UTN 2012
Facundo Farias
 
PPT
Basic software-testing-concepts
medsherb
 
PDF
What Is Unit Testing_ A Complete Guide With Examples.pdf
Steve Wortham
 
PDF
Agile Testing Pasadena JUG Aug2009
Grig Gheorghiu
 
PDF
What Is Unit Testing A Complete Guide With Examples.pdf
Jace Reed
 
PPT
Testing 3: Types Of Tests That May Be Required
ArleneAndrews2
 
PPT
Testing
Mohammed
 
PPTX
Understanding Unit Testing
ikhwanhayat
 
PPTX
Types of testing
Sonam Agarwal
 
TDD Best Practices
Attila Bertók
 
Why Unit Testingl
priya_trivedi
 
Why Unit Testingl
priya_trivedi
 
Why unit testingl
Priya Sharma
 
Unit Testing
Anuj Arora
 
Testing and Mocking Object - The Art of Mocking.
Deepak Singhvi
 
assertYourself - Breaking the Theories and Assumptions of Unit Testing in Flex
michael.labriola
 
Effective unit testing
Roberto Casadei
 
Test driven development
namkha87
 
Testing In Software Engineering
kiansahafi
 
Unit testing
Murugesan Nataraj
 
TDD Workshop UTN 2012
Facundo Farias
 
Basic software-testing-concepts
medsherb
 
What Is Unit Testing_ A Complete Guide With Examples.pdf
Steve Wortham
 
Agile Testing Pasadena JUG Aug2009
Grig Gheorghiu
 
What Is Unit Testing A Complete Guide With Examples.pdf
Jace Reed
 
Testing 3: Types Of Tests That May Be Required
ArleneAndrews2
 
Testing
Mohammed
 
Understanding Unit Testing
ikhwanhayat
 
Types of testing
Sonam Agarwal
 
Ad

More from Alejandro Claro Mosqueda (6)

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

Recently uploaded (20)

PDF
Open Source Milvus Vector Database v 2.6
Zilliz
 
PPTX
01_Approach Cyber- DORA Incident Management.pptx
FinTech Belgium
 
PPTX
New ThousandEyes Product Innovations: Cisco Live June 2025
ThousandEyes
 
PPTX
Enabling the Digital Artisan – keynote at ICOCI 2025
Alan Dix
 
PDF
FME as an Orchestration Tool with Principles From Data Gravity
Safe Software
 
PDF
5 Things to Consider When Deploying AI in Your Enterprise
Safe Software
 
PDF
UiPath Agentic AI ile Akıllı Otomasyonun Yeni Çağı
UiPathCommunity
 
PDF
Automating the Geo-Referencing of Historic Aerial Photography in Flanders
Safe Software
 
PDF
LLM Search Readiness Audit - Dentsu x SEO Square - June 2025.pdf
Nick Samuel
 
PDF
Hello I'm "AI" Your New _________________
Dr. Tathagat Varma
 
PDF
Why aren't you using FME Flow's CPU Time?
Safe Software
 
PDF
Enhancing Environmental Monitoring with Real-Time Data Integration: Leveragin...
Safe Software
 
PDF
“MPU+: A Transformative Solution for Next-Gen AI at the Edge,” a Presentation...
Edge AI and Vision Alliance
 
PDF
From Chatbot to Destroyer of Endpoints - Can ChatGPT Automate EDR Bypasses (1...
Priyanka Aash
 
DOCX
Daily Lesson Log MATATAG ICT TEchnology 8
LOIDAALMAZAN3
 
PDF
Database Benchmarking for Performance Masterclass: Session 2 - Data Modeling ...
ScyllaDB
 
PPTX
Smarter Governance with AI: What Every Board Needs to Know
OnBoard
 
PDF
Redefining Work in the Age of AI - What to expect? How to prepare? Why it mat...
Malinda Kapuruge
 
PPTX
Simplifica la seguridad en la nube y la detección de amenazas con FortiCNAPP
Cristian Garcia G.
 
PDF
The Growing Value and Application of FME & GenAI
Safe Software
 
Open Source Milvus Vector Database v 2.6
Zilliz
 
01_Approach Cyber- DORA Incident Management.pptx
FinTech Belgium
 
New ThousandEyes Product Innovations: Cisco Live June 2025
ThousandEyes
 
Enabling the Digital Artisan – keynote at ICOCI 2025
Alan Dix
 
FME as an Orchestration Tool with Principles From Data Gravity
Safe Software
 
5 Things to Consider When Deploying AI in Your Enterprise
Safe Software
 
UiPath Agentic AI ile Akıllı Otomasyonun Yeni Çağı
UiPathCommunity
 
Automating the Geo-Referencing of Historic Aerial Photography in Flanders
Safe Software
 
LLM Search Readiness Audit - Dentsu x SEO Square - June 2025.pdf
Nick Samuel
 
Hello I'm "AI" Your New _________________
Dr. Tathagat Varma
 
Why aren't you using FME Flow's CPU Time?
Safe Software
 
Enhancing Environmental Monitoring with Real-Time Data Integration: Leveragin...
Safe Software
 
“MPU+: A Transformative Solution for Next-Gen AI at the Edge,” a Presentation...
Edge AI and Vision Alliance
 
From Chatbot to Destroyer of Endpoints - Can ChatGPT Automate EDR Bypasses (1...
Priyanka Aash
 
Daily Lesson Log MATATAG ICT TEchnology 8
LOIDAALMAZAN3
 
Database Benchmarking for Performance Masterclass: Session 2 - Data Modeling ...
ScyllaDB
 
Smarter Governance with AI: What Every Board Needs to Know
OnBoard
 
Redefining Work in the Age of AI - What to expect? How to prepare? Why it mat...
Malinda Kapuruge
 
Simplifica la seguridad en la nube y la detección de amenazas con FortiCNAPP
Cristian Garcia G.
 
The Growing Value and Application of FME & GenAI
Safe Software
 

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