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

Jens Happe
Jens HappeHead of Software Engineering @ Chrono24, Co-Founder @ Sparkteams à 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 sur 47

Recommandé

Intro to TDD par
Intro to TDDIntro to TDD
Intro to TDDJason Nocks
197 vues16 diapositives
Ian Cooper webinar for DDD Iran: Kent beck style tdd seven years after par
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 vues68 diapositives
Blackboxtesting 02 An Example Test Series par
Blackboxtesting 02 An Example Test SeriesBlackboxtesting 02 An Example Test Series
Blackboxtesting 02 An Example Test Seriesnazeer pasha
533 vues19 diapositives
TDD talk par
TDD talkTDD talk
TDD talkRobert Dyball
1.2K vues40 diapositives
Test-Driven Development par
 Test-Driven Development  Test-Driven Development
Test-Driven Development Amir Assad
135 vues29 diapositives
Episode 3 – Classes, Inheritance, Abstract Class, and Interfaces par
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 vues33 diapositives

Contenu connexe

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

Agile Practices par
Agile PracticesAgile Practices
Agile PracticesThatchaphol Saranurak
3.3K vues61 diapositives
Engl317 project4 slidedoc2_stepsto_designux_test par
Engl317 project4 slidedoc2_stepsto_designux_testEngl317 project4 slidedoc2_stepsto_designux_test
Engl317 project4 slidedoc2_stepsto_designux_testZachary Williamson
435 vues38 diapositives
Introduction to Test Driven Development par
Introduction to Test Driven DevelopmentIntroduction to Test Driven Development
Introduction to Test Driven DevelopmentMichael Denomy
1.9K vues21 diapositives
TDD — Are you sure you properly test code? par
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 vues44 diapositives
Approval Tests in Action: A LEGO Exercise and an Experience Report par
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 vues22 diapositives
Lessons learned from measuring software development processes par
Lessons learned from measuring software development processesLessons learned from measuring software development processes
Lessons learned from measuring software development processesMarkus Unterauer
1K vues27 diapositives

Similaire à Jens Happe - Write tests you love, not hate.pdf(20)

Introduction to Test Driven Development par Michael Denomy
Introduction to Test Driven DevelopmentIntroduction to Test Driven Development
Introduction to Test Driven Development
Michael Denomy1.9K vues
Approval Tests in Action: A LEGO Exercise and an Experience Report par 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 vues
Lessons learned from measuring software development processes par Markus Unterauer
Lessons learned from measuring software development processesLessons learned from measuring software development processes
Lessons learned from measuring software development processes
Writing acceptable patches: an empirical study of open source project patches par 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 vues
The future of testing magento 2 james cowie from shero commerce - 10 24-20 ... par 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 vues
Lecture 10: ML Testing & Explainability (Full Stack Deep Learning - Spring 2021) par 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 vues
How to improve your unit tests? par 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 vues
VT.NET 20160411: An Intro to Test Driven Development (TDD) par 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 vues
www.tutorialsbook.com presents Manual testing par Tutorials Book
www.tutorialsbook.com presents Manual testingwww.tutorialsbook.com presents Manual testing
www.tutorialsbook.com presents Manual testing
Tutorials Book777 vues
{10.0} Test Driven Development.pptx par AmalEldhose2
{10.0} Test Driven Development.pptx{10.0} Test Driven Development.pptx
{10.0} Test Driven Development.pptx
AmalEldhose25 vues
AgileTestingOverview par Umair Anis
AgileTestingOverviewAgileTestingOverview
AgileTestingOverview
Umair Anis364 vues
Getting started with Test Driven Development - Ferdous Mahmud Shaon par 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 vues

Dernier

DSD-INT 2023 Thermobaricity in 3D DCSM-FM - taking pressure into account in t... par
DSD-INT 2023 Thermobaricity in 3D DCSM-FM - taking pressure into account in t...DSD-INT 2023 Thermobaricity in 3D DCSM-FM - taking pressure into account in t...
DSD-INT 2023 Thermobaricity in 3D DCSM-FM - taking pressure into account in t...Deltares
9 vues26 diapositives
DSD-INT 2023 3D hydrodynamic modelling of microplastic transport in lakes - J... par
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...Deltares
9 vues24 diapositives
WebAssembly par
WebAssemblyWebAssembly
WebAssemblyJens Siebert
35 vues18 diapositives
Unmasking the Dark Art of Vectored Exception Handling: Bypassing XDR and EDR ... par
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 Onofri
773 vues34 diapositives
DSD-INT 2023 Simulating a falling apron in Delft3D 4 - Engineering Practice -... par
DSD-INT 2023 Simulating a falling apron in Delft3D 4 - Engineering Practice -...DSD-INT 2023 Simulating a falling apron in Delft3D 4 - Engineering Practice -...
DSD-INT 2023 Simulating a falling apron in Delft3D 4 - Engineering Practice -...Deltares
6 vues15 diapositives
What Can Employee Monitoring Software Do?​ par
What Can Employee Monitoring Software Do?​What Can Employee Monitoring Software Do?​
What Can Employee Monitoring Software Do?​wAnywhere
21 vues11 diapositives

Dernier(20)

DSD-INT 2023 Thermobaricity in 3D DCSM-FM - taking pressure into account in t... par Deltares
DSD-INT 2023 Thermobaricity in 3D DCSM-FM - taking pressure into account in t...DSD-INT 2023 Thermobaricity in 3D DCSM-FM - taking pressure into account in t...
DSD-INT 2023 Thermobaricity in 3D DCSM-FM - taking pressure into account in t...
Deltares9 vues
DSD-INT 2023 3D hydrodynamic modelling of microplastic transport in lakes - J... par 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 vues
Unmasking the Dark Art of Vectored Exception Handling: Bypassing XDR and EDR ... par 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 Onofri773 vues
DSD-INT 2023 Simulating a falling apron in Delft3D 4 - Engineering Practice -... par Deltares
DSD-INT 2023 Simulating a falling apron in Delft3D 4 - Engineering Practice -...DSD-INT 2023 Simulating a falling apron in Delft3D 4 - Engineering Practice -...
DSD-INT 2023 Simulating a falling apron in Delft3D 4 - Engineering Practice -...
Deltares6 vues
What Can Employee Monitoring Software Do?​ par wAnywhere
What Can Employee Monitoring Software Do?​What Can Employee Monitoring Software Do?​
What Can Employee Monitoring Software Do?​
wAnywhere21 vues
360 graden fabriek par info33492
360 graden fabriek360 graden fabriek
360 graden fabriek
info3349236 vues
Dev-Cloud Conference 2023 - Continuous Deployment Showdown: Traditionelles CI... par 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üller37 vues
Neo4j y GenAI par Neo4j
Neo4j y GenAI Neo4j y GenAI
Neo4j y GenAI
Neo4j45 vues
Roadmap y Novedades de producto par Neo4j
Roadmap y Novedades de productoRoadmap y Novedades de producto
Roadmap y Novedades de producto
Neo4j50 vues
Navigating container technology for enhanced security by Niklas Saari par Metosin Oy
Navigating container technology for enhanced security by Niklas SaariNavigating container technology for enhanced security by Niklas Saari
Navigating container technology for enhanced security by Niklas Saari
Metosin Oy12 vues
Fleet Management Software in India par Fleetable
Fleet Management Software in India Fleet Management Software in India
Fleet Management Software in India
Fleetable11 vues
DSD-INT 2023 FloodAdapt - A decision-support tool for compound flood risk mit... par Deltares
DSD-INT 2023 FloodAdapt - A decision-support tool for compound flood risk mit...DSD-INT 2023 FloodAdapt - A decision-support tool for compound flood risk mit...
DSD-INT 2023 FloodAdapt - A decision-support tool for compound flood risk mit...
Deltares13 vues
DSD-INT 2023 The Danube Hazardous Substances Model - Kovacs par Deltares
DSD-INT 2023 The Danube Hazardous Substances Model - KovacsDSD-INT 2023 The Danube Hazardous Substances Model - Kovacs
DSD-INT 2023 The Danube Hazardous Substances Model - Kovacs
Deltares8 vues
Elevate your SAP landscape's efficiency and performance with HCL Workload Aut... par HCLSoftware
Elevate your SAP landscape's efficiency and performance with HCL Workload Aut...Elevate your SAP landscape's efficiency and performance with HCL Workload Aut...
Elevate your SAP landscape's efficiency and performance with HCL Workload Aut...
HCLSoftware6 vues
DSD-INT 2023 Machine learning in hydraulic engineering - Exploring unseen fut... par Deltares
DSD-INT 2023 Machine learning in hydraulic engineering - Exploring unseen fut...DSD-INT 2023 Machine learning in hydraulic engineering - Exploring unseen fut...
DSD-INT 2023 Machine learning in hydraulic engineering - Exploring unseen fut...
Deltares6 vues

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/