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

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

Recommended

Intro to TDD by
Intro to TDDIntro to TDD
Intro to TDDJason Nocks
197 views16 slides
Ian Cooper webinar for DDD Iran: Kent beck style tdd seven years after by
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 views68 slides
Blackboxtesting 02 An Example Test Series by
Blackboxtesting 02 An Example Test SeriesBlackboxtesting 02 An Example Test Series
Blackboxtesting 02 An Example Test Seriesnazeer pasha
533 views19 slides
TDD talk by
TDD talkTDD talk
TDD talkRobert Dyball
1.2K views40 slides
Test-Driven Development by
 Test-Driven Development  Test-Driven Development
Test-Driven Development Amir Assad
135 views29 slides
Episode 3 – Classes, Inheritance, Abstract Class, and Interfaces by
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 views33 slides

More Related Content

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

Agile Practices by
Agile PracticesAgile Practices
Agile PracticesThatchaphol Saranurak
3.3K views61 slides
Engl317 project4 slidedoc2_stepsto_designux_test by
Engl317 project4 slidedoc2_stepsto_designux_testEngl317 project4 slidedoc2_stepsto_designux_test
Engl317 project4 slidedoc2_stepsto_designux_testZachary Williamson
435 views38 slides
Introduction to Test Driven Development by
Introduction to Test Driven DevelopmentIntroduction to Test Driven Development
Introduction to Test Driven DevelopmentMichael Denomy
1.9K views21 slides
TDD — Are you sure you properly test code? by
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 views44 slides
Approval Tests in Action: A LEGO Exercise and an Experience Report by
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 views22 slides
Lessons learned from measuring software development processes by
Lessons learned from measuring software development processesLessons learned from measuring software development processes
Lessons learned from measuring software development processesMarkus Unterauer
1K views27 slides

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

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

Recently uploaded

SAP FOR TYRE INDUSTRY.pdf by
SAP FOR TYRE INDUSTRY.pdfSAP FOR TYRE INDUSTRY.pdf
SAP FOR TYRE INDUSTRY.pdfVirendra Rai, PMP
24 views3 slides
nintendo_64.pptx by
nintendo_64.pptxnintendo_64.pptx
nintendo_64.pptxpaiga02016
5 views7 slides
Advanced API Mocking Techniques by
Advanced API Mocking TechniquesAdvanced API Mocking Techniques
Advanced API Mocking TechniquesDimpy Adhikary
19 views11 slides
Agile 101 by
Agile 101Agile 101
Agile 101John Valentino
9 views20 slides
Dapr Unleashed: Accelerating Microservice Development by
Dapr Unleashed: Accelerating Microservice DevelopmentDapr Unleashed: Accelerating Microservice Development
Dapr Unleashed: Accelerating Microservice DevelopmentMiroslav Janeski
10 views29 slides
20231129 - Platform @ localhost 2023 - Application-driven infrastructure with... by
20231129 - Platform @ localhost 2023 - Application-driven infrastructure with...20231129 - Platform @ localhost 2023 - Application-driven infrastructure with...
20231129 - Platform @ localhost 2023 - Application-driven infrastructure with...sparkfabrik
7 views46 slides

Recently uploaded(20)

Advanced API Mocking Techniques by Dimpy Adhikary
Advanced API Mocking TechniquesAdvanced API Mocking Techniques
Advanced API Mocking Techniques
Dimpy Adhikary19 views
Dapr Unleashed: Accelerating Microservice Development by Miroslav Janeski
Dapr Unleashed: Accelerating Microservice DevelopmentDapr Unleashed: Accelerating Microservice Development
Dapr Unleashed: Accelerating Microservice Development
Miroslav Janeski10 views
20231129 - Platform @ localhost 2023 - Application-driven infrastructure with... by sparkfabrik
20231129 - Platform @ localhost 2023 - Application-driven infrastructure with...20231129 - Platform @ localhost 2023 - Application-driven infrastructure with...
20231129 - Platform @ localhost 2023 - Application-driven infrastructure with...
sparkfabrik7 views
Gen Apps on Google Cloud PaLM2 and Codey APIs in Action by Márton Kodok
Gen Apps on Google Cloud PaLM2 and Codey APIs in ActionGen Apps on Google Cloud PaLM2 and Codey APIs in Action
Gen Apps on Google Cloud PaLM2 and Codey APIs in Action
Márton Kodok6 views
Quality Engineer: A Day in the Life by John Valentino
Quality Engineer: A Day in the LifeQuality Engineer: A Day in the Life
Quality Engineer: A Day in the Life
John Valentino6 views
tecnologia18.docx by nosi6702
tecnologia18.docxtecnologia18.docx
tecnologia18.docx
nosi67025 views
SUGCON ANZ Presentation V2.1 Final.pptx by Jack Spektor
SUGCON ANZ Presentation V2.1 Final.pptxSUGCON ANZ Presentation V2.1 Final.pptx
SUGCON ANZ Presentation V2.1 Final.pptx
Jack Spektor23 views
Dev-HRE-Ops - Addressing the _Last Mile DevOps Challenge_ in Highly Regulated... by TomHalpin9
Dev-HRE-Ops - Addressing the _Last Mile DevOps Challenge_ in Highly Regulated...Dev-HRE-Ops - Addressing the _Last Mile DevOps Challenge_ in Highly Regulated...
Dev-HRE-Ops - Addressing the _Last Mile DevOps Challenge_ in Highly Regulated...
TomHalpin96 views
Unlocking the Power of AI in Product Management - A Comprehensive Guide for P... by NimaTorabi2
Unlocking the Power of AI in Product Management - A Comprehensive Guide for P...Unlocking the Power of AI in Product Management - A Comprehensive Guide for P...
Unlocking the Power of AI in Product Management - A Comprehensive Guide for P...
NimaTorabi212 views
Fleet Management Software in India by Fleetable
Fleet Management Software in India Fleet Management Software in India
Fleet Management Software in India
Fleetable11 views

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/