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

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

Recomendados

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

Más contenido relacionado

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

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

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

Engl317 project4 slidedoc2_stepsto_designux_test von 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 von 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? von 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 von 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 von 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 von 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 ... von 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) von 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? von 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) von 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 von 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 von AmalEldhose2
{10.0} Test Driven Development.pptx{10.0} Test Driven Development.pptx
{10.0} Test Driven Development.pptx
AmalEldhose25 views
AgileTestingOverview von Umair Anis
AgileTestingOverviewAgileTestingOverview
AgileTestingOverview
Umair Anis364 views
Getting started with Test Driven Development - Ferdous Mahmud Shaon von 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

Último

Fleet Management Software in India von
Fleet Management Software in India Fleet Management Software in India
Fleet Management Software in India Fleetable
12 views1 Folie
Copilot Prompting Toolkit_All Resources.pdf von
Copilot Prompting Toolkit_All Resources.pdfCopilot Prompting Toolkit_All Resources.pdf
Copilot Prompting Toolkit_All Resources.pdfRiccardo Zamana
16 views4 Folien
ShortStory_qlora.pptx von
ShortStory_qlora.pptxShortStory_qlora.pptx
ShortStory_qlora.pptxpranathikrishna22
5 views10 Folien
Dev-HRE-Ops - Addressing the _Last Mile DevOps Challenge_ in Highly Regulated... von
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...TomHalpin9
6 views29 Folien
Understanding HTML terminology von
Understanding HTML terminologyUnderstanding HTML terminology
Understanding HTML terminologyartembondar5
6 views8 Folien
DRYiCE™ iAutomate: AI-enhanced Intelligent Runbook Automation von
DRYiCE™ iAutomate: AI-enhanced Intelligent Runbook AutomationDRYiCE™ iAutomate: AI-enhanced Intelligent Runbook Automation
DRYiCE™ iAutomate: AI-enhanced Intelligent Runbook AutomationHCLSoftware
6 views8 Folien

Último(20)

Fleet Management Software in India von Fleetable
Fleet Management Software in India Fleet Management Software in India
Fleet Management Software in India
Fleetable12 views
Copilot Prompting Toolkit_All Resources.pdf von Riccardo Zamana
Copilot Prompting Toolkit_All Resources.pdfCopilot Prompting Toolkit_All Resources.pdf
Copilot Prompting Toolkit_All Resources.pdf
Riccardo Zamana16 views
Dev-HRE-Ops - Addressing the _Last Mile DevOps Challenge_ in Highly Regulated... von 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
Understanding HTML terminology von artembondar5
Understanding HTML terminologyUnderstanding HTML terminology
Understanding HTML terminology
artembondar56 views
DRYiCE™ iAutomate: AI-enhanced Intelligent Runbook Automation von HCLSoftware
DRYiCE™ iAutomate: AI-enhanced Intelligent Runbook AutomationDRYiCE™ iAutomate: AI-enhanced Intelligent Runbook Automation
DRYiCE™ iAutomate: AI-enhanced Intelligent Runbook Automation
HCLSoftware6 views
Bootstrapping vs Venture Capital.pptx von Zeljko Svedic
Bootstrapping vs Venture Capital.pptxBootstrapping vs Venture Capital.pptx
Bootstrapping vs Venture Capital.pptx
Zeljko Svedic14 views
BushraDBR: An Automatic Approach to Retrieving Duplicate Bug Reports von 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
How Workforce Management Software Empowers SMEs | TraQSuite von TraQSuite
How Workforce Management Software Empowers SMEs | TraQSuiteHow Workforce Management Software Empowers SMEs | TraQSuite
How Workforce Management Software Empowers SMEs | TraQSuite
TraQSuite5 views
Airline Booking Software von SharmiMehta
Airline Booking SoftwareAirline Booking Software
Airline Booking Software
SharmiMehta7 views
Sprint 226 von ManageIQ
Sprint 226Sprint 226
Sprint 226
ManageIQ10 views
Ports-and-Adapters Architecture for Embedded HMI von Burkhard Stubert
Ports-and-Adapters Architecture for Embedded HMIPorts-and-Adapters Architecture for Embedded HMI
Ports-and-Adapters Architecture for Embedded HMI
Burkhard Stubert26 views
Top-5-production-devconMunich-2023.pptx von Tier1 app
Top-5-production-devconMunich-2023.pptxTop-5-production-devconMunich-2023.pptx
Top-5-production-devconMunich-2023.pptx
Tier1 app8 views
360 graden fabriek von info33492
360 graden fabriek360 graden fabriek
360 graden fabriek
info33492143 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/