Jens Happe - Write tests you love, not hate.pdf

Jens Happe
Jens HappeHead of Software Engineering @ Chrono24, Co-Founder @ Sparkteams en Chrono24
Jens Happe
Head of Software Engineering - Chrono24
Co-Founder - Sparkteams
Write tests you love, not hate
What does the following test check?
What does this test check?
Sep-23 Write tests you love, not hate | Jens Happe | Chrono24 3
What does this test check?
Sep-23 Write tests you love, not hate | Jens Happe | Chrono24 4
Call to component under test (CUT)
Configuration of mocked objects
Verification
Set the next user id
Set the next activation code
Register new user
Verify email sent
Verify user saved
Sep-23 Write tests you love, not hate | Jens Happe | Chrono24 5
Too much boilerplate code
• Tests are hard to understand
• Writing tests is a lot of effort
The Fragile Test Problem
• Adjusting tests after a minor change
takes two days
• Tests generate too many false positives
Tests are running too long
à No one likes writing tests
https://imgs.xkcd.com/comics/compiling.png
Common Problems with Unit Testing
Okay, no one likes writing tests. So what?!
The consequences of a bad test structure (simplified)
Write tests you love, not hate | Jens Happe | Chrono24 6
Sep-23
What if…
The consequences of a good test structure (simplified)
Write tests you love, not hate | Jens Happe | Chrono24 7
Sep-23
Sep-23
Agenda
Common problems with Unit Testing
Increase readability
by getting the basics right
Reduce boilerplate code
by using Trainers and Entity Builders
Resolve the Fragile Test Problem
by decoupling tests and implementation
Speed up slow tests
by abstraction of the platform
Increase readability
Sep-23 Write tests you love, not hate | Jens Happe | Chrono24 9
http://xunitpatterns.com/Test%20Utility%20Method.html
https://cucumber.io/docs/gherkin/reference/
when
given
then
Set the next user id
Set the next activation code
Register new user
Verify email sent
Verify user saved
Extract method with Given / When / Then
Increase readability
Sep-23 Write tests you love, not hate | Jens Happe | Chrono24 10
Extract method with Given / When / Then
when
given
then
https://martinfowler.com/bliki/GivenWhenThen.html
Increase readability
Sep-23 Write tests you love, not hate | Jens Happe | Chrono24 11
Explicit relationship between Given and Then
when
given
then
Getting the basic right
for tests already gets you pretty far.
So, we are done now, right?
Thank you for your attention!
It was a pleasure J
Sep-23 Write tests you love, not hate | Jens Happe | Chrono24 13
Of course not.
• Our Test Class is still a mess
containing almost only
boiler plate code.
• We cannot reuse the given…
and then… methods for
other test cases.
Sep-23 Write tests you love, not hate | Jens Happe | Chrono24 14
Test Boilerplate
Sep-23
Agenda
Common problems with Unit Testing
Increase readability
by getting the basics right
Reduce boilerplate code
by using Trainers and Entity Builders
Resolve the Fragile Test Problem
by decoupling tests and implementation
Speed up slow tests
by abstraction of the platform
Sep-23 Write tests you love, not hate | Jens Happe | Chrono24 16
Entity Builders simplify test setup
https://github.com/casid/jusecase-builders-generator
Trainers
Sep-23 Write tests you love, not hate | Jens Happe | Chrono24 17
Problem: Configuring mocked objects is very repetitive and verbose
Trainers
Sep-23 Write tests you love, not hate | Jens Happe | Chrono24 18
Encapsulate the configuration in separate classes called Trainers
Trainers
Sep-23 Write tests you love, not hate | Jens Happe | Chrono24 19
Encapsulate the configuration in separate classes called Trainers
…
Trainers
Sep-23 Write tests you love, not hate | Jens Happe | Chrono24 20
Encapsulate the configuration in separate classes called Trainers
…
Sep-23 Write tests you love, not hate | Jens Happe | Chrono24 21
• Configuration of mocked objects outside of the test classes
-> increased readability
-> increased reusability
• Generic Trainers can be developed, that further simplify the test setup
Trainers
Benefits
Entity Builders and Trainers
simplify the setup of the test fixture.
Sep-23
Agenda
Common problems with Unit Testing
Increase readability
by getting the basics right
Reduce boilerplate code
by using Trainers and Entity Builders
Resolve the Fragile Test Problem
by decoupling tests and implementation
Speed up slow tests
by abstraction of the platform
Fragile Test Problem
Sep-23 Write tests you love, not hate | Jens Happe | Chrono24 24
Definition
Sep-23 Write tests you love, not hate | Jens Happe | Chrono24 25
Fragile Test Problem
Definition
Sep-23 Write tests you love, not hate | Jens Happe | Chrono24 26
Fragile Test Problem
Definition
Sep-23 Write tests you love, not hate | Jens Happe | Chrono24 27
Fragile Test Problem
Definition
Sep-23 Write tests you love, not hate | Jens Happe | Chrono24 28
Fragile Test Problem
Definition
Sep-23 Write tests you love, not hate | Jens Happe | Chrono24 29
Fragile Test Problem
This is fine.
Fragile Test Problem
Sep-23 Write tests you love, not hate | Jens Happe | Chrono24 30
This is no refactoring!
Fragile Test Problem
Sep-23 Write tests you love, not hate | Jens Happe | Chrono24 31
Tight Coupling
Fragile Test Problem
Sep-23 Write tests you love, not hate | Jens Happe | Chrono24 32
Tight Coupling = Bad Design
Fragile Test Problem
Sep-23 Write tests you love, not hate | Jens Happe | Chrono24 33
Solution: Loosely coupled tests
https://blog.cleancoder.com/uncle-bob/2017/10/03/TestContravariance.html
Sep-23 Write tests you love, not hate | Jens Happe | Chrono24 34
Fragile Test Problem
Solution: Loosely coupled tests
https://blog.cleancoder.com/uncle-bob/2017/10/03/TestContravariance.html
That breaks the rules!
For every class X there should
be a test class XTest.
Sep-23 Write tests you love, not hate | Jens Happe | Chrono24 35
But wait.
Fragile Test Problem
Isn’t that indirect testing?
Typical example for indirect
testing: Testing through the
presentation layer
No. Here we test the result of
the interaction between the
services, not individual
services.
Sep-23 Write tests you love, not hate | Jens Happe | Chrono24 36
But wait.
Fragile Test Problem
http://xunitpatterns.com/Obscure%20Test.html#Indirect%20Testing
It's much harder now to
identify the cause of a failing
test!
No. You should work in small
increments and run tests after
every change.
That makes it easy to identify
the cause of a failing test.
Sep-23 Write tests you love, not hate | Jens Happe | Chrono24 37
But wait.
Fragile Test Problem
Tests should be useful.
So, design them that way.
Sep-23
Agenda
Common problems with Unit Testing
Increase readability
by getting the basics right
Reduce boilerplate code
by using Trainers and Entity Builders
Resolve the Fragile Test Problem
by decoupling tests and implementation
Speed up slow tests
by abstraction of the platform
Speed up slow tests
Sep-23 Write tests you love, not hate | Jens Happe | Chrono24 40
External dependencies slow down test execution
Speed up slow tests
Sep-23 Write tests you love, not hate | Jens Happe | Chrono24 41
Push all external dependencies outside and only test the logic
• Dependency Rule
• Outside concrete, inside
abstract
-> Intrinsically testable
Speed up slow tests
Sep-23 Write tests you love, not hate | Jens Happe | Chrono24 42
However, the reality is messy.
Speed up slow tests
Sep-23 Write tests you love, not hate | Jens Happe | Chrono24 43
However, the reality is messy. So, let’s deal with it.
Don’t be afraid of tests.
Our journey
2003 – 2016
• Almost no automated tests
2016 – 2018
• Test-Driven Development ideas
• Entity Builder and Trainer
• Establishment of use case tests
2019
• Move from Jenkins to GitLab CI
• Run tests with every push
2022
• Monorepo with parallel build
2023
à 11.935 use case (unit) tests that run in less than a minute
Sep-23 Write tests you love, not hate | Jens Happe | Chrono24 45
… until now
• Removing and simplifying supporting frameworks to run tests
à Fast test execution
Separating tests from external dependencies
• Testing at the borders of what matters at this point
à Tests and implementation can be structured independently
Decoupling test and implementation
• Entity Builders allow clear data definition
• Trainers simplify the configuration of dependencies
à Reusable and simple setup
Defining scenarios simplified
• Given / When / Then gives structure
• Explicit relationship between pre- and post-condition
à Increased readability
Getting the basics right
Sep-23 Write tests you love, not hate | Jens Happe | Chrono24 46
Key Takeaways
Many people contributed to this work:
• Andreas Hager
• Niklas Keller
• Martin Hofmann-Sobik
• And many others…
Email:
jens.happe@chrono24.com
X / Twitter:
@HappeJens
LinkedIn:
https://www.linkedin.com/in/jens-happe-idea-to-impact/
Thank you!
Maybe you? Join us!
https://about.chrono24.com/jobs/technology/
1 de 47

Recomendados

Intro to TDD por
Intro to TDDIntro to TDD
Intro to TDDJason Nocks
197 vistas16 diapositivas
Ian Cooper webinar for DDD Iran: Kent beck style tdd seven years after por
Ian Cooper webinar for DDD Iran: Kent beck style tdd   seven years afterIan Cooper webinar for DDD Iran: Kent beck style tdd   seven years after
Ian Cooper webinar for DDD Iran: Kent beck style tdd seven years afterIranian Domain-Driven Design Community
260 vistas68 diapositivas
Blackboxtesting 02 An Example Test Series por
Blackboxtesting 02 An Example Test SeriesBlackboxtesting 02 An Example Test Series
Blackboxtesting 02 An Example Test Seriesnazeer pasha
533 vistas19 diapositivas
TDD talk por
TDD talkTDD talk
TDD talkRobert Dyball
1.2K vistas40 diapositivas
Test-Driven Development por
 Test-Driven Development  Test-Driven Development
Test-Driven Development Amir Assad
135 vistas29 diapositivas
Episode 3 – Classes, Inheritance, Abstract Class, and Interfaces por
Episode 3 – Classes, Inheritance, Abstract Class, and InterfacesEpisode 3 – Classes, Inheritance, Abstract Class, and Interfaces
Episode 3 – Classes, Inheritance, Abstract Class, and InterfacesJitendra Zaa
4.2K vistas33 diapositivas

Más contenido relacionado

Similar a Jens Happe - Write tests you love, not hate.pdf

Agile Practices por
Agile PracticesAgile Practices
Agile PracticesThatchaphol Saranurak
3.3K vistas61 diapositivas
Engl317 project4 slidedoc2_stepsto_designux_test por
Engl317 project4 slidedoc2_stepsto_designux_testEngl317 project4 slidedoc2_stepsto_designux_test
Engl317 project4 slidedoc2_stepsto_designux_testZachary Williamson
435 vistas38 diapositivas
Introduction to Test Driven Development por
Introduction to Test Driven DevelopmentIntroduction to Test Driven Development
Introduction to Test Driven DevelopmentMichael Denomy
1.9K vistas21 diapositivas
TDD — Are you sure you properly test code? por
TDD — Are you sure you properly test code?TDD — Are you sure you properly test code?
TDD — Are you sure you properly test code?Dmitriy Nesteryuk
530 vistas44 diapositivas
Approval Tests in Action: A LEGO Exercise and an Experience Report por
Approval Tests in Action: A LEGO Exercise and an Experience ReportApproval Tests in Action: A LEGO Exercise and an Experience Report
Approval Tests in Action: A LEGO Exercise and an Experience Reporthouseofyin
308 vistas22 diapositivas
Lessons learned from measuring software development processes por
Lessons learned from measuring software development processesLessons learned from measuring software development processes
Lessons learned from measuring software development processesMarkus Unterauer
1K vistas27 diapositivas

Similar a Jens Happe - Write tests you love, not hate.pdf(20)

Engl317 project4 slidedoc2_stepsto_designux_test por Zachary Williamson
Engl317 project4 slidedoc2_stepsto_designux_testEngl317 project4 slidedoc2_stepsto_designux_test
Engl317 project4 slidedoc2_stepsto_designux_test
Zachary Williamson435 vistas
Introduction to Test Driven Development por Michael Denomy
Introduction to Test Driven DevelopmentIntroduction to Test Driven Development
Introduction to Test Driven Development
Michael Denomy1.9K vistas
TDD — Are you sure you properly test code? por Dmitriy Nesteryuk
TDD — Are you sure you properly test code?TDD — Are you sure you properly test code?
TDD — Are you sure you properly test code?
Dmitriy Nesteryuk530 vistas
Approval Tests in Action: A LEGO Exercise and an Experience Report por houseofyin
Approval Tests in Action: A LEGO Exercise and an Experience ReportApproval Tests in Action: A LEGO Exercise and an Experience Report
Approval Tests in Action: A LEGO Exercise and an Experience Report
houseofyin308 vistas
Lessons learned from measuring software development processes por Markus Unterauer
Lessons learned from measuring software development processesLessons learned from measuring software development processes
Lessons learned from measuring software development processes
Markus Unterauer1K vistas
Writing acceptable patches: an empirical study of open source project patches por Yida Tao
Writing acceptable patches: an empirical study of open source project patchesWriting acceptable patches: an empirical study of open source project patches
Writing acceptable patches: an empirical study of open source project patches
Yida Tao736 vistas
The future of testing magento 2 james cowie from shero commerce - 10 24-20 ... por James Cowie
The future of testing magento 2   james cowie from shero commerce - 10 24-20 ...The future of testing magento 2   james cowie from shero commerce - 10 24-20 ...
The future of testing magento 2 james cowie from shero commerce - 10 24-20 ...
James Cowie310 vistas
Lecture 10: ML Testing & Explainability (Full Stack Deep Learning - Spring 2021) por Sergey Karayev
Lecture 10: ML Testing & Explainability (Full Stack Deep Learning - Spring 2021)Lecture 10: ML Testing & Explainability (Full Stack Deep Learning - Spring 2021)
Lecture 10: ML Testing & Explainability (Full Stack Deep Learning - Spring 2021)
Sergey Karayev14.1K vistas
How to improve your unit tests? por Péter Módos
How to improve your unit tests?How to improve your unit tests?
How to improve your unit tests?
Péter Módos1.1K vistas
VT.NET 20160411: An Intro to Test Driven Development (TDD) por Rob Hale
VT.NET 20160411: An Intro to Test Driven Development (TDD)VT.NET 20160411: An Intro to Test Driven Development (TDD)
VT.NET 20160411: An Intro to Test Driven Development (TDD)
Rob Hale445 vistas
www.tutorialsbook.com presents Manual testing por Tutorials Book
www.tutorialsbook.com presents Manual testingwww.tutorialsbook.com presents Manual testing
www.tutorialsbook.com presents Manual testing
Tutorials Book777 vistas
{10.0} Test Driven Development.pptx por AmalEldhose2
{10.0} Test Driven Development.pptx{10.0} Test Driven Development.pptx
{10.0} Test Driven Development.pptx
AmalEldhose25 vistas
AgileTestingOverview por Umair Anis
AgileTestingOverviewAgileTestingOverview
AgileTestingOverview
Umair Anis364 vistas
Getting started with Test Driven Development - Ferdous Mahmud Shaon por Cefalo
Getting started with Test Driven Development - Ferdous Mahmud ShaonGetting started with Test Driven Development - Ferdous Mahmud Shaon
Getting started with Test Driven Development - Ferdous Mahmud Shaon
Cefalo14 vistas
Bigger Unit Test Are Better por Peter Schuler
Bigger Unit Test Are BetterBigger Unit Test Are Better
Bigger Unit Test Are Better
Peter Schuler15 vistas

Último

LAVADORA ROLO.docx por
LAVADORA ROLO.docxLAVADORA ROLO.docx
LAVADORA ROLO.docxSamuelRamirez83524
7 vistas1 diapositiva
Dev-Cloud Conference 2023 - Continuous Deployment Showdown: Traditionelles CI... por
Dev-Cloud Conference 2023 - Continuous Deployment Showdown: Traditionelles CI...Dev-Cloud Conference 2023 - Continuous Deployment Showdown: Traditionelles CI...
Dev-Cloud Conference 2023 - Continuous Deployment Showdown: Traditionelles CI...Marc Müller
36 vistas83 diapositivas
Unleash The Monkeys por
Unleash The MonkeysUnleash The Monkeys
Unleash The MonkeysJacob Duijzer
7 vistas28 diapositivas
HarshithAkkapelli_Presentation.pdf por
HarshithAkkapelli_Presentation.pdfHarshithAkkapelli_Presentation.pdf
HarshithAkkapelli_Presentation.pdfharshithakkapelli
11 vistas16 diapositivas
DSD-INT 2023 - Delft3D User Days - Welcome - Day 3 - Afternoon por
DSD-INT 2023 - Delft3D User Days - Welcome - Day 3 - AfternoonDSD-INT 2023 - Delft3D User Days - Welcome - Day 3 - Afternoon
DSD-INT 2023 - Delft3D User Days - Welcome - Day 3 - AfternoonDeltares
13 vistas43 diapositivas
DSD-INT 2023 Wave-Current Interaction at Montrose Tidal Inlet System and Its ... por
DSD-INT 2023 Wave-Current Interaction at Montrose Tidal Inlet System and Its ...DSD-INT 2023 Wave-Current Interaction at Montrose Tidal Inlet System and Its ...
DSD-INT 2023 Wave-Current Interaction at Montrose Tidal Inlet System and Its ...Deltares
9 vistas32 diapositivas

Último(20)

Dev-Cloud Conference 2023 - Continuous Deployment Showdown: Traditionelles CI... por Marc Müller
Dev-Cloud Conference 2023 - Continuous Deployment Showdown: Traditionelles CI...Dev-Cloud Conference 2023 - Continuous Deployment Showdown: Traditionelles CI...
Dev-Cloud Conference 2023 - Continuous Deployment Showdown: Traditionelles CI...
Marc Müller36 vistas
DSD-INT 2023 - Delft3D User Days - Welcome - Day 3 - Afternoon por Deltares
DSD-INT 2023 - Delft3D User Days - Welcome - Day 3 - AfternoonDSD-INT 2023 - Delft3D User Days - Welcome - Day 3 - Afternoon
DSD-INT 2023 - Delft3D User Days - Welcome - Day 3 - Afternoon
Deltares13 vistas
DSD-INT 2023 Wave-Current Interaction at Montrose Tidal Inlet System and Its ... por Deltares
DSD-INT 2023 Wave-Current Interaction at Montrose Tidal Inlet System and Its ...DSD-INT 2023 Wave-Current Interaction at Montrose Tidal Inlet System and Its ...
DSD-INT 2023 Wave-Current Interaction at Montrose Tidal Inlet System and Its ...
Deltares9 vistas
BushraDBR: An Automatic Approach to Retrieving Duplicate Bug Reports por Ra'Fat Al-Msie'deen
BushraDBR: An Automatic Approach to Retrieving Duplicate Bug ReportsBushraDBR: An Automatic Approach to Retrieving Duplicate Bug Reports
BushraDBR: An Automatic Approach to Retrieving Duplicate Bug Reports
Mark Simpson - UKOUG23 - Refactoring Monolithic Oracle Database Applications ... por marksimpsongw
Mark Simpson - UKOUG23 - Refactoring Monolithic Oracle Database Applications ...Mark Simpson - UKOUG23 - Refactoring Monolithic Oracle Database Applications ...
Mark Simpson - UKOUG23 - Refactoring Monolithic Oracle Database Applications ...
marksimpsongw76 vistas
DSD-INT 2023 HydroMT model building and river-coast coupling in Python - Bove... por Deltares
DSD-INT 2023 HydroMT model building and river-coast coupling in Python - Bove...DSD-INT 2023 HydroMT model building and river-coast coupling in Python - Bove...
DSD-INT 2023 HydroMT model building and river-coast coupling in Python - Bove...
Deltares17 vistas
DSD-INT 2023 3D hydrodynamic modelling of microplastic transport in lakes - J... por Deltares
DSD-INT 2023 3D hydrodynamic modelling of microplastic transport in lakes - J...DSD-INT 2023 3D hydrodynamic modelling of microplastic transport in lakes - J...
DSD-INT 2023 3D hydrodynamic modelling of microplastic transport in lakes - J...
Deltares9 vistas
Unmasking the Dark Art of Vectored Exception Handling: Bypassing XDR and EDR ... por Donato Onofri
Unmasking the Dark Art of Vectored Exception Handling: Bypassing XDR and EDR ...Unmasking the Dark Art of Vectored Exception Handling: Bypassing XDR and EDR ...
Unmasking the Dark Art of Vectored Exception Handling: Bypassing XDR and EDR ...
Donato Onofri711 vistas
DSD-INT 2023 Simulation of Coastal Hydrodynamics and Water Quality in Hong Ko... por Deltares
DSD-INT 2023 Simulation of Coastal Hydrodynamics and Water Quality in Hong Ko...DSD-INT 2023 Simulation of Coastal Hydrodynamics and Water Quality in Hong Ko...
DSD-INT 2023 Simulation of Coastal Hydrodynamics and Water Quality in Hong Ko...
Deltares11 vistas
A first look at MariaDB 11.x features and ideas on how to use them por Federico Razzoli
A first look at MariaDB 11.x features and ideas on how to use themA first look at MariaDB 11.x features and ideas on how to use them
A first look at MariaDB 11.x features and ideas on how to use them
Federico Razzoli45 vistas
Fleet Management Software in India por Fleetable
Fleet Management Software in India Fleet Management Software in India
Fleet Management Software in India
Fleetable11 vistas
Citi TechTalk Session 2: Kafka Deep Dive por confluent
Citi TechTalk Session 2: Kafka Deep DiveCiti TechTalk Session 2: Kafka Deep Dive
Citi TechTalk Session 2: Kafka Deep Dive
confluent17 vistas
DSD-INT 2023 SFINCS Modelling in the U.S. Pacific Northwest - Parker por Deltares
DSD-INT 2023 SFINCS Modelling in the U.S. Pacific Northwest - ParkerDSD-INT 2023 SFINCS Modelling in the U.S. Pacific Northwest - Parker
DSD-INT 2023 SFINCS Modelling in the U.S. Pacific Northwest - Parker
Deltares9 vistas
DSD-INT 2023 Next-Generation Flood Inundation Mapping for Taiwan - Delft3D FM... por Deltares
DSD-INT 2023 Next-Generation Flood Inundation Mapping for Taiwan - Delft3D FM...DSD-INT 2023 Next-Generation Flood Inundation Mapping for Taiwan - Delft3D FM...
DSD-INT 2023 Next-Generation Flood Inundation Mapping for Taiwan - Delft3D FM...
Deltares7 vistas

Jens Happe - Write tests you love, not hate.pdf

  • 1. Jens Happe Head of Software Engineering - Chrono24 Co-Founder - Sparkteams Write tests you love, not hate
  • 2. What does the following test check?
  • 3. What does this test check? Sep-23 Write tests you love, not hate | Jens Happe | Chrono24 3
  • 4. What does this test check? Sep-23 Write tests you love, not hate | Jens Happe | Chrono24 4 Call to component under test (CUT) Configuration of mocked objects Verification Set the next user id Set the next activation code Register new user Verify email sent Verify user saved
  • 5. Sep-23 Write tests you love, not hate | Jens Happe | Chrono24 5 Too much boilerplate code • Tests are hard to understand • Writing tests is a lot of effort The Fragile Test Problem • Adjusting tests after a minor change takes two days • Tests generate too many false positives Tests are running too long à No one likes writing tests https://imgs.xkcd.com/comics/compiling.png Common Problems with Unit Testing
  • 6. Okay, no one likes writing tests. So what?! The consequences of a bad test structure (simplified) Write tests you love, not hate | Jens Happe | Chrono24 6 Sep-23
  • 7. What if… The consequences of a good test structure (simplified) Write tests you love, not hate | Jens Happe | Chrono24 7 Sep-23
  • 8. Sep-23 Agenda Common problems with Unit Testing Increase readability by getting the basics right Reduce boilerplate code by using Trainers and Entity Builders Resolve the Fragile Test Problem by decoupling tests and implementation Speed up slow tests by abstraction of the platform
  • 9. Increase readability Sep-23 Write tests you love, not hate | Jens Happe | Chrono24 9 http://xunitpatterns.com/Test%20Utility%20Method.html https://cucumber.io/docs/gherkin/reference/ when given then Set the next user id Set the next activation code Register new user Verify email sent Verify user saved Extract method with Given / When / Then
  • 10. Increase readability Sep-23 Write tests you love, not hate | Jens Happe | Chrono24 10 Extract method with Given / When / Then when given then https://martinfowler.com/bliki/GivenWhenThen.html
  • 11. Increase readability Sep-23 Write tests you love, not hate | Jens Happe | Chrono24 11 Explicit relationship between Given and Then when given then
  • 12. Getting the basic right for tests already gets you pretty far.
  • 13. So, we are done now, right? Thank you for your attention! It was a pleasure J Sep-23 Write tests you love, not hate | Jens Happe | Chrono24 13
  • 14. Of course not. • Our Test Class is still a mess containing almost only boiler plate code. • We cannot reuse the given… and then… methods for other test cases. Sep-23 Write tests you love, not hate | Jens Happe | Chrono24 14 Test Boilerplate
  • 15. Sep-23 Agenda Common problems with Unit Testing Increase readability by getting the basics right Reduce boilerplate code by using Trainers and Entity Builders Resolve the Fragile Test Problem by decoupling tests and implementation Speed up slow tests by abstraction of the platform
  • 16. Sep-23 Write tests you love, not hate | Jens Happe | Chrono24 16 Entity Builders simplify test setup https://github.com/casid/jusecase-builders-generator
  • 17. Trainers Sep-23 Write tests you love, not hate | Jens Happe | Chrono24 17 Problem: Configuring mocked objects is very repetitive and verbose
  • 18. Trainers Sep-23 Write tests you love, not hate | Jens Happe | Chrono24 18 Encapsulate the configuration in separate classes called Trainers
  • 19. Trainers Sep-23 Write tests you love, not hate | Jens Happe | Chrono24 19 Encapsulate the configuration in separate classes called Trainers …
  • 20. Trainers Sep-23 Write tests you love, not hate | Jens Happe | Chrono24 20 Encapsulate the configuration in separate classes called Trainers …
  • 21. Sep-23 Write tests you love, not hate | Jens Happe | Chrono24 21 • Configuration of mocked objects outside of the test classes -> increased readability -> increased reusability • Generic Trainers can be developed, that further simplify the test setup Trainers Benefits
  • 22. Entity Builders and Trainers simplify the setup of the test fixture.
  • 23. Sep-23 Agenda Common problems with Unit Testing Increase readability by getting the basics right Reduce boilerplate code by using Trainers and Entity Builders Resolve the Fragile Test Problem by decoupling tests and implementation Speed up slow tests by abstraction of the platform
  • 24. Fragile Test Problem Sep-23 Write tests you love, not hate | Jens Happe | Chrono24 24 Definition
  • 25. Sep-23 Write tests you love, not hate | Jens Happe | Chrono24 25 Fragile Test Problem Definition
  • 26. Sep-23 Write tests you love, not hate | Jens Happe | Chrono24 26 Fragile Test Problem Definition
  • 27. Sep-23 Write tests you love, not hate | Jens Happe | Chrono24 27 Fragile Test Problem Definition
  • 28. Sep-23 Write tests you love, not hate | Jens Happe | Chrono24 28 Fragile Test Problem Definition
  • 29. Sep-23 Write tests you love, not hate | Jens Happe | Chrono24 29 Fragile Test Problem This is fine.
  • 30. Fragile Test Problem Sep-23 Write tests you love, not hate | Jens Happe | Chrono24 30 This is no refactoring!
  • 31. Fragile Test Problem Sep-23 Write tests you love, not hate | Jens Happe | Chrono24 31 Tight Coupling
  • 32. Fragile Test Problem Sep-23 Write tests you love, not hate | Jens Happe | Chrono24 32 Tight Coupling = Bad Design
  • 33. Fragile Test Problem Sep-23 Write tests you love, not hate | Jens Happe | Chrono24 33 Solution: Loosely coupled tests https://blog.cleancoder.com/uncle-bob/2017/10/03/TestContravariance.html
  • 34. Sep-23 Write tests you love, not hate | Jens Happe | Chrono24 34 Fragile Test Problem Solution: Loosely coupled tests https://blog.cleancoder.com/uncle-bob/2017/10/03/TestContravariance.html
  • 35. That breaks the rules! For every class X there should be a test class XTest. Sep-23 Write tests you love, not hate | Jens Happe | Chrono24 35 But wait. Fragile Test Problem
  • 36. Isn’t that indirect testing? Typical example for indirect testing: Testing through the presentation layer No. Here we test the result of the interaction between the services, not individual services. Sep-23 Write tests you love, not hate | Jens Happe | Chrono24 36 But wait. Fragile Test Problem http://xunitpatterns.com/Obscure%20Test.html#Indirect%20Testing
  • 37. It's much harder now to identify the cause of a failing test! No. You should work in small increments and run tests after every change. That makes it easy to identify the cause of a failing test. Sep-23 Write tests you love, not hate | Jens Happe | Chrono24 37 But wait. Fragile Test Problem
  • 38. Tests should be useful. So, design them that way.
  • 39. Sep-23 Agenda Common problems with Unit Testing Increase readability by getting the basics right Reduce boilerplate code by using Trainers and Entity Builders Resolve the Fragile Test Problem by decoupling tests and implementation Speed up slow tests by abstraction of the platform
  • 40. Speed up slow tests Sep-23 Write tests you love, not hate | Jens Happe | Chrono24 40 External dependencies slow down test execution
  • 41. Speed up slow tests Sep-23 Write tests you love, not hate | Jens Happe | Chrono24 41 Push all external dependencies outside and only test the logic • Dependency Rule • Outside concrete, inside abstract -> Intrinsically testable
  • 42. Speed up slow tests Sep-23 Write tests you love, not hate | Jens Happe | Chrono24 42 However, the reality is messy.
  • 43. Speed up slow tests Sep-23 Write tests you love, not hate | Jens Happe | Chrono24 43 However, the reality is messy. So, let’s deal with it.
  • 44. Don’t be afraid of tests.
  • 45. Our journey 2003 – 2016 • Almost no automated tests 2016 – 2018 • Test-Driven Development ideas • Entity Builder and Trainer • Establishment of use case tests 2019 • Move from Jenkins to GitLab CI • Run tests with every push 2022 • Monorepo with parallel build 2023 à 11.935 use case (unit) tests that run in less than a minute Sep-23 Write tests you love, not hate | Jens Happe | Chrono24 45 … until now
  • 46. • Removing and simplifying supporting frameworks to run tests à Fast test execution Separating tests from external dependencies • Testing at the borders of what matters at this point à Tests and implementation can be structured independently Decoupling test and implementation • Entity Builders allow clear data definition • Trainers simplify the configuration of dependencies à Reusable and simple setup Defining scenarios simplified • Given / When / Then gives structure • Explicit relationship between pre- and post-condition à Increased readability Getting the basics right Sep-23 Write tests you love, not hate | Jens Happe | Chrono24 46 Key Takeaways
  • 47. Many people contributed to this work: • Andreas Hager • Niklas Keller • Martin Hofmann-Sobik • And many others… Email: jens.happe@chrono24.com X / Twitter: @HappeJens LinkedIn: https://www.linkedin.com/in/jens-happe-idea-to-impact/ Thank you! Maybe you? Join us! https://about.chrono24.com/jobs/technology/