ºÝºÝߣ

ºÝºÝߣShare a Scribd company logo
Unit Testing in PHP
Lee Boynton
Advantages to Automating Testing
¡ñ Faster to test
¡ð Don't need to "click about"
¡ð Don't need to login
¡ð Don't need to have commented out test code
¡ñ Prevent recurring bugs
¡ð Write a test for bug, run the test after every change
¡ñ Easier to test edge cases
¡ñ Less fear when making changes
¡ð You may have forgotten how the code works
¡ð You may inherit someone else's code
¡ñ Find bugs before your users
¡ð This means you keep your customers happy, this
means more money!
Advantages to Automating Testing
¡ñ Better designed code, especially with TDD
¡ð Unit tested code tends to be
¡ö Less coupled
¡ö Less complex
¡ñ Tests document how code should work
¡ñ Once you are good at unit testing, it's
probably faster
¡ñ Tests don't have to be amazing: "Imperfect
tests, run frequently, are much better than
perfect tests that are never written at all"
Disadvantages
¡ñ You have to suck it up and write tests to
really see the benefits
¡ñ Hard to retrofit tests
¡ð You may have to refactor old code, or
¡ð You may have to write a lot of test code for code
which is not easy to test
¡ñ Harder to write bad code
¡ñ You probably won't want to write code
without tests again
Goals When Writing Tests
¡ñ Tests should be
¡ð Simple
¡ö Don't have ifs or loops
¡ð Easy to write
¡ð Easy to read
¡ð Easy to run
¡ð Isolated
¡ñ But these ideas may conflict or be hard to
achieve
¡ð Do your best
¡ð Can improve tests over time
¡ð Bad tests better than no tests
Common PHPUnit Methods
¡ñ $this->assertTrue($value, 'Value should
have been true')
¡ñ $this->assertFalse($value, 'Value should
have been false')
¡ñ $this->assertEquals($expected, $actual,
'The result is not what was expected')
¡ñ Try to write a message to indicate what
specifically is being asserted
¡ð Easier to understand what's wrong instead of e.g.
"Failed asserting that false is true"
Common PHPUnit Patterns
¡ñ Use setUp() method to instantiate the class
you are testing
¡ð This works well if you don't have lots of constructor
parameters
¡ñ Use data providers to test lots of different
inputs
¡ð Tests shouldn't have duplicate code either
¡ñ Use tearDown() method if you need to clean
up external resources after each test is run
¡ð Files
¡ð Database
Hard to Test Things
¡ñ Static calls to other classes
¡ð You cannot mock the dependency
¡ñ Singletons
¡ð Constructor is private or protected
¡ð Uses static call to get instance
¡ð Cannot guarantee there are no side effects when
running multiple tests
¡ñ Private methods
¡ð Usually you indirectly test these when you test public
methods
¡ð Can use reflection if you really want, but this
probably means you should refactor
Hard to Test Things
¡ñ Hard coded dependencies
¡ð Such as when a class instantiates another class
¡ñ Magic methods
¡ð __call
¡ð __get
¡ð __set
How to Write Testable Code
¡ñ Use dependency injection
¡ð This means you don't instantiate classes unless
you're in a factory
¡ñ Keep methods relatively small
¡ñ Avoid having lots of private methods
¡ñ Write classes which do one thing (single
responsibility principle)
Go go go!
¡ñ http://www.phpunit.
de/manual/current/en/index.html

More Related Content

Viewers also liked (6)

PHP Doesn't Suck
PHP Doesn't SuckPHP Doesn't Suck
PHP Doesn't Suck
John Hobbs
?
PHP and node.js Together
PHP and node.js TogetherPHP and node.js Together
PHP and node.js Together
Chris Tankersley
?
PHP meets NodeJS
PHP meets NodeJSPHP meets NodeJS
PHP meets NodeJS
Takayuki Yamaguchi
?
PHP + Node.jsPHP + Node.js
PHP + Node.js
Patrick Kaminski
?
Integrating Node.js with PHP
Integrating Node.js with PHPIntegrating Node.js with PHP
Integrating Node.js with PHP
Lee Boynton
?
How Google Works
How Google WorksHow Google Works
How Google Works
Eric Schmidt
?

Similar to Unit testing in PHP (20)

Effective Unit Testing
Effective Unit TestingEffective Unit Testing
Effective Unit Testing
Eyal Kenig
?
Unit Testing and TDD 2017
Unit Testing and TDD 2017Unit Testing and TDD 2017
Unit Testing and TDD 2017
Xavi Hidalgo
?
Unit testing legacy code
Unit testing legacy codeUnit testing legacy code
Unit testing legacy code
Lars Thorup
?
Writing Tests Effectively
Writing Tests EffectivelyWriting Tests Effectively
Writing Tests Effectively
Paul Boocock
?
Demise of test scripts rise of test ideas
Demise of test scripts rise of test ideasDemise of test scripts rise of test ideas
Demise of test scripts rise of test ideas
Richard Robinson
?
Writing clean scientific software Murphy cleancoding
Writing clean scientific software Murphy cleancodingWriting clean scientific software Murphy cleancoding
Writing clean scientific software Murphy cleancoding
saber tabatabaee
?
Unit testing
Unit testingUnit testing
Unit testing
PiXeL16
?
Unit testing
Unit testingUnit testing
Unit testing
Panos Pnevmatikatos
?
Writing Tests with the Unity Test Framework
Writing Tests with the Unity Test FrameworkWriting Tests with the Unity Test Framework
Writing Tests with the Unity Test Framework
Peter Kofler
?
Test automation expert days
Test automation   expert daysTest automation   expert days
Test automation expert days
Oren Rubin
?
TDD in Python With Pytest
TDD in Python With PytestTDD in Python With Pytest
TDD in Python With Pytest
Eddy Reyes
?
An insight to test driven development and unit testing
An insight to test driven development and unit testingAn insight to test driven development and unit testing
An insight to test driven development and unit testing
Dharmendra Prasad
?
Ui Testing with Ghost Inspector
Ui Testing with Ghost InspectorUi Testing with Ghost Inspector
Ui Testing with Ghost Inspector
Harvard Web Working Group
?
The Art of Unit Testing Feedback
The Art of Unit Testing FeedbackThe Art of Unit Testing Feedback
The Art of Unit Testing Feedback
Deon Huang
?
UPC Plone Testing Talk
UPC Plone Testing TalkUPC Plone Testing Talk
UPC Plone Testing Talk
Timo Stollenwerk
?
Test Driven Development en Go con Ginkgo y Gomega
Test Driven Development en Go con Ginkgo y GomegaTest Driven Development en Go con Ginkgo y Gomega
Test Driven Development en Go con Ginkgo y Gomega
Software Guru
?
Selenium done right
Selenium done rightSelenium done right
Selenium done right
Tal Landa
?
Software Testing
Software TestingSoftware Testing
Software Testing
Andrew Wang
?
Php Inspections (EA Extended): The Cookbook
Php Inspections (EA Extended): The CookbookPhp Inspections (EA Extended): The Cookbook
Php Inspections (EA Extended): The Cookbook
Vladimir Reznichenko
?
Pen Testing, Red Teaming, and More
Pen Testing, Red Teaming, and MorePen Testing, Red Teaming, and More
Pen Testing, Red Teaming, and More
CTruncer
?
Effective Unit Testing
Effective Unit TestingEffective Unit Testing
Effective Unit Testing
Eyal Kenig
?
Unit Testing and TDD 2017
Unit Testing and TDD 2017Unit Testing and TDD 2017
Unit Testing and TDD 2017
Xavi Hidalgo
?
Unit testing legacy code
Unit testing legacy codeUnit testing legacy code
Unit testing legacy code
Lars Thorup
?
Writing Tests Effectively
Writing Tests EffectivelyWriting Tests Effectively
Writing Tests Effectively
Paul Boocock
?
Demise of test scripts rise of test ideas
Demise of test scripts rise of test ideasDemise of test scripts rise of test ideas
Demise of test scripts rise of test ideas
Richard Robinson
?
Writing clean scientific software Murphy cleancoding
Writing clean scientific software Murphy cleancodingWriting clean scientific software Murphy cleancoding
Writing clean scientific software Murphy cleancoding
saber tabatabaee
?
Unit testing
Unit testingUnit testing
Unit testing
PiXeL16
?
Writing Tests with the Unity Test Framework
Writing Tests with the Unity Test FrameworkWriting Tests with the Unity Test Framework
Writing Tests with the Unity Test Framework
Peter Kofler
?
Test automation expert days
Test automation   expert daysTest automation   expert days
Test automation expert days
Oren Rubin
?
TDD in Python With Pytest
TDD in Python With PytestTDD in Python With Pytest
TDD in Python With Pytest
Eddy Reyes
?
An insight to test driven development and unit testing
An insight to test driven development and unit testingAn insight to test driven development and unit testing
An insight to test driven development and unit testing
Dharmendra Prasad
?
The Art of Unit Testing Feedback
The Art of Unit Testing FeedbackThe Art of Unit Testing Feedback
The Art of Unit Testing Feedback
Deon Huang
?
Test Driven Development en Go con Ginkgo y Gomega
Test Driven Development en Go con Ginkgo y GomegaTest Driven Development en Go con Ginkgo y Gomega
Test Driven Development en Go con Ginkgo y Gomega
Software Guru
?
Selenium done right
Selenium done rightSelenium done right
Selenium done right
Tal Landa
?
Php Inspections (EA Extended): The Cookbook
Php Inspections (EA Extended): The CookbookPhp Inspections (EA Extended): The Cookbook
Php Inspections (EA Extended): The Cookbook
Vladimir Reznichenko
?
Pen Testing, Red Teaming, and More
Pen Testing, Red Teaming, and MorePen Testing, Red Teaming, and More
Pen Testing, Red Teaming, and More
CTruncer
?

Recently uploaded (20)

Presentation Session 2 -Context Grounding.pdf
Presentation Session 2 -Context Grounding.pdfPresentation Session 2 -Context Grounding.pdf
Presentation Session 2 -Context Grounding.pdf
Mukesh Kala
?
The Future is Here ¨C Learn How to Get Started! Ionic App Development
The Future is Here ¨C Learn How to Get Started! Ionic App DevelopmentThe Future is Here ¨C Learn How to Get Started! Ionic App Development
The Future is Here ¨C Learn How to Get Started! Ionic App Development
7Pillars
?
SAP Business Data Cloud: Was die neue SAP-L?sung f¨¹r Unternehmen und ihre Dat...
SAP Business Data Cloud: Was die neue SAP-L?sung f¨¹r Unternehmen und ihre Dat...SAP Business Data Cloud: Was die neue SAP-L?sung f¨¹r Unternehmen und ihre Dat...
SAP Business Data Cloud: Was die neue SAP-L?sung f¨¹r Unternehmen und ihre Dat...
IBsolution GmbH
?
Testing Tools for Accessibility Enhancement Part II.pptx
Testing Tools for Accessibility Enhancement Part II.pptxTesting Tools for Accessibility Enhancement Part II.pptx
Testing Tools for Accessibility Enhancement Part II.pptx
Julia Undeutsch
?
How Air Coil Inductors Work By Cet Technology
How Air Coil Inductors Work By Cet TechnologyHow Air Coil Inductors Work By Cet Technology
How Air Coil Inductors Work By Cet Technology
CET Technology
?
UiPath Automation Developer Associate Training Series 2025 - Session 8
UiPath Automation Developer Associate Training Series 2025 - Session 8UiPath Automation Developer Associate Training Series 2025 - Session 8
UiPath Automation Developer Associate Training Series 2025 - Session 8
DianaGray10
?
Graphs & GraphRAG - Essential Ingredients for GenAI
Graphs & GraphRAG - Essential Ingredients for GenAIGraphs & GraphRAG - Essential Ingredients for GenAI
Graphs & GraphRAG - Essential Ingredients for GenAI
Neo4j
?
202408_JAWSPANKRATION_Introduction_of_Minaden.pdf
202408_JAWSPANKRATION_Introduction_of_Minaden.pdf202408_JAWSPANKRATION_Introduction_of_Minaden.pdf
202408_JAWSPANKRATION_Introduction_of_Minaden.pdf
NTTDOCOMO-ServiceInnovation
?
RBM - PIXIAGE - AskPixi Page - Inpixon-MWC 2025.pptx
RBM - PIXIAGE - AskPixi Page - Inpixon-MWC 2025.pptxRBM - PIXIAGE - AskPixi Page - Inpixon-MWC 2025.pptx
RBM - PIXIAGE - AskPixi Page - Inpixon-MWC 2025.pptx
quinlan4
?
GDG Cloud Southlake #41: Shay Levi: Beyond the Hype:How Enterprises Are Using AI
GDG Cloud Southlake #41: Shay Levi: Beyond the Hype:How Enterprises Are Using AIGDG Cloud Southlake #41: Shay Levi: Beyond the Hype:How Enterprises Are Using AI
GDG Cloud Southlake #41: Shay Levi: Beyond the Hype:How Enterprises Are Using AI
James Anderson
?
SAP Automation with UiPath: SAP Test Automation - Part 5 of 8
SAP Automation with UiPath: SAP Test Automation - Part 5 of 8SAP Automation with UiPath: SAP Test Automation - Part 5 of 8
SAP Automation with UiPath: SAP Test Automation - Part 5 of 8
DianaGray10
?
All-Data, Any-AI Integration: FME & Amazon Bedrock in the Real-World
All-Data, Any-AI Integration: FME & Amazon Bedrock in the Real-WorldAll-Data, Any-AI Integration: FME & Amazon Bedrock in the Real-World
All-Data, Any-AI Integration: FME & Amazon Bedrock in the Real-World
Safe Software
?
UiPath NY AI Series: Session 3: UiPath Autopilot for Everyone with Clipboard AI
UiPath NY AI Series: Session 3:  UiPath Autopilot for Everyone with Clipboard AIUiPath NY AI Series: Session 3:  UiPath Autopilot for Everyone with Clipboard AI
UiPath NY AI Series: Session 3: UiPath Autopilot for Everyone with Clipboard AI
DianaGray10
?
Rens van de Schoot - Mensen, machines en de zoektocht naar het laatste releva...
Rens van de Schoot - Mensen, machines en de zoektocht naar het laatste releva...Rens van de Schoot - Mensen, machines en de zoektocht naar het laatste releva...
Rens van de Schoot - Mensen, machines en de zoektocht naar het laatste releva...
voginip
?
The Road to SAP S4HANA Cloud with SAP Activate.pptx
The Road to SAP S4HANA Cloud with SAP Activate.pptxThe Road to SAP S4HANA Cloud with SAP Activate.pptx
The Road to SAP S4HANA Cloud with SAP Activate.pptx
zsbaranyai
?
Recruiting Tech: A Look at Why AI is Actually OG
Recruiting Tech: A Look at Why AI is Actually OGRecruiting Tech: A Look at Why AI is Actually OG
Recruiting Tech: A Look at Why AI is Actually OG
Matt Charney
?
selection of competencies requiring ICT integration.pptx
selection of competencies requiring ICT integration.pptxselection of competencies requiring ICT integration.pptx
selection of competencies requiring ICT integration.pptx
escuyoscherrymae
?
UiPath Agentic automation with Autopilot for everyone + new features/releases
UiPath Agentic  automation with Autopilot for everyone + new features/releasesUiPath Agentic  automation with Autopilot for everyone + new features/releases
UiPath Agentic automation with Autopilot for everyone + new features/releases
DianaGray10
?
Dev Dives: Unleash the power of macOS Automation with UiPath
Dev Dives: Unleash the power of macOS Automation with UiPathDev Dives: Unleash the power of macOS Automation with UiPath
Dev Dives: Unleash the power of macOS Automation with UiPath
UiPathCommunity
?
Scalable Multi-Agent AI with AutoGen by Udai
Scalable Multi-Agent AI with AutoGen by UdaiScalable Multi-Agent AI with AutoGen by Udai
Scalable Multi-Agent AI with AutoGen by Udai
Udaiappa Ramachandran
?
Presentation Session 2 -Context Grounding.pdf
Presentation Session 2 -Context Grounding.pdfPresentation Session 2 -Context Grounding.pdf
Presentation Session 2 -Context Grounding.pdf
Mukesh Kala
?
The Future is Here ¨C Learn How to Get Started! Ionic App Development
The Future is Here ¨C Learn How to Get Started! Ionic App DevelopmentThe Future is Here ¨C Learn How to Get Started! Ionic App Development
The Future is Here ¨C Learn How to Get Started! Ionic App Development
7Pillars
?
SAP Business Data Cloud: Was die neue SAP-L?sung f¨¹r Unternehmen und ihre Dat...
SAP Business Data Cloud: Was die neue SAP-L?sung f¨¹r Unternehmen und ihre Dat...SAP Business Data Cloud: Was die neue SAP-L?sung f¨¹r Unternehmen und ihre Dat...
SAP Business Data Cloud: Was die neue SAP-L?sung f¨¹r Unternehmen und ihre Dat...
IBsolution GmbH
?
Testing Tools for Accessibility Enhancement Part II.pptx
Testing Tools for Accessibility Enhancement Part II.pptxTesting Tools for Accessibility Enhancement Part II.pptx
Testing Tools for Accessibility Enhancement Part II.pptx
Julia Undeutsch
?
How Air Coil Inductors Work By Cet Technology
How Air Coil Inductors Work By Cet TechnologyHow Air Coil Inductors Work By Cet Technology
How Air Coil Inductors Work By Cet Technology
CET Technology
?
UiPath Automation Developer Associate Training Series 2025 - Session 8
UiPath Automation Developer Associate Training Series 2025 - Session 8UiPath Automation Developer Associate Training Series 2025 - Session 8
UiPath Automation Developer Associate Training Series 2025 - Session 8
DianaGray10
?
Graphs & GraphRAG - Essential Ingredients for GenAI
Graphs & GraphRAG - Essential Ingredients for GenAIGraphs & GraphRAG - Essential Ingredients for GenAI
Graphs & GraphRAG - Essential Ingredients for GenAI
Neo4j
?
RBM - PIXIAGE - AskPixi Page - Inpixon-MWC 2025.pptx
RBM - PIXIAGE - AskPixi Page - Inpixon-MWC 2025.pptxRBM - PIXIAGE - AskPixi Page - Inpixon-MWC 2025.pptx
RBM - PIXIAGE - AskPixi Page - Inpixon-MWC 2025.pptx
quinlan4
?
GDG Cloud Southlake #41: Shay Levi: Beyond the Hype:How Enterprises Are Using AI
GDG Cloud Southlake #41: Shay Levi: Beyond the Hype:How Enterprises Are Using AIGDG Cloud Southlake #41: Shay Levi: Beyond the Hype:How Enterprises Are Using AI
GDG Cloud Southlake #41: Shay Levi: Beyond the Hype:How Enterprises Are Using AI
James Anderson
?
SAP Automation with UiPath: SAP Test Automation - Part 5 of 8
SAP Automation with UiPath: SAP Test Automation - Part 5 of 8SAP Automation with UiPath: SAP Test Automation - Part 5 of 8
SAP Automation with UiPath: SAP Test Automation - Part 5 of 8
DianaGray10
?
All-Data, Any-AI Integration: FME & Amazon Bedrock in the Real-World
All-Data, Any-AI Integration: FME & Amazon Bedrock in the Real-WorldAll-Data, Any-AI Integration: FME & Amazon Bedrock in the Real-World
All-Data, Any-AI Integration: FME & Amazon Bedrock in the Real-World
Safe Software
?
UiPath NY AI Series: Session 3: UiPath Autopilot for Everyone with Clipboard AI
UiPath NY AI Series: Session 3:  UiPath Autopilot for Everyone with Clipboard AIUiPath NY AI Series: Session 3:  UiPath Autopilot for Everyone with Clipboard AI
UiPath NY AI Series: Session 3: UiPath Autopilot for Everyone with Clipboard AI
DianaGray10
?
Rens van de Schoot - Mensen, machines en de zoektocht naar het laatste releva...
Rens van de Schoot - Mensen, machines en de zoektocht naar het laatste releva...Rens van de Schoot - Mensen, machines en de zoektocht naar het laatste releva...
Rens van de Schoot - Mensen, machines en de zoektocht naar het laatste releva...
voginip
?
The Road to SAP S4HANA Cloud with SAP Activate.pptx
The Road to SAP S4HANA Cloud with SAP Activate.pptxThe Road to SAP S4HANA Cloud with SAP Activate.pptx
The Road to SAP S4HANA Cloud with SAP Activate.pptx
zsbaranyai
?
Recruiting Tech: A Look at Why AI is Actually OG
Recruiting Tech: A Look at Why AI is Actually OGRecruiting Tech: A Look at Why AI is Actually OG
Recruiting Tech: A Look at Why AI is Actually OG
Matt Charney
?
selection of competencies requiring ICT integration.pptx
selection of competencies requiring ICT integration.pptxselection of competencies requiring ICT integration.pptx
selection of competencies requiring ICT integration.pptx
escuyoscherrymae
?
UiPath Agentic automation with Autopilot for everyone + new features/releases
UiPath Agentic  automation with Autopilot for everyone + new features/releasesUiPath Agentic  automation with Autopilot for everyone + new features/releases
UiPath Agentic automation with Autopilot for everyone + new features/releases
DianaGray10
?
Dev Dives: Unleash the power of macOS Automation with UiPath
Dev Dives: Unleash the power of macOS Automation with UiPathDev Dives: Unleash the power of macOS Automation with UiPath
Dev Dives: Unleash the power of macOS Automation with UiPath
UiPathCommunity
?
Scalable Multi-Agent AI with AutoGen by Udai
Scalable Multi-Agent AI with AutoGen by UdaiScalable Multi-Agent AI with AutoGen by Udai
Scalable Multi-Agent AI with AutoGen by Udai
Udaiappa Ramachandran
?

Unit testing in PHP

  • 1. Unit Testing in PHP Lee Boynton
  • 2. Advantages to Automating Testing ¡ñ Faster to test ¡ð Don't need to "click about" ¡ð Don't need to login ¡ð Don't need to have commented out test code ¡ñ Prevent recurring bugs ¡ð Write a test for bug, run the test after every change ¡ñ Easier to test edge cases ¡ñ Less fear when making changes ¡ð You may have forgotten how the code works ¡ð You may inherit someone else's code ¡ñ Find bugs before your users ¡ð This means you keep your customers happy, this means more money!
  • 3. Advantages to Automating Testing ¡ñ Better designed code, especially with TDD ¡ð Unit tested code tends to be ¡ö Less coupled ¡ö Less complex ¡ñ Tests document how code should work ¡ñ Once you are good at unit testing, it's probably faster ¡ñ Tests don't have to be amazing: "Imperfect tests, run frequently, are much better than perfect tests that are never written at all"
  • 4. Disadvantages ¡ñ You have to suck it up and write tests to really see the benefits ¡ñ Hard to retrofit tests ¡ð You may have to refactor old code, or ¡ð You may have to write a lot of test code for code which is not easy to test ¡ñ Harder to write bad code ¡ñ You probably won't want to write code without tests again
  • 5. Goals When Writing Tests ¡ñ Tests should be ¡ð Simple ¡ö Don't have ifs or loops ¡ð Easy to write ¡ð Easy to read ¡ð Easy to run ¡ð Isolated ¡ñ But these ideas may conflict or be hard to achieve ¡ð Do your best ¡ð Can improve tests over time ¡ð Bad tests better than no tests
  • 6. Common PHPUnit Methods ¡ñ $this->assertTrue($value, 'Value should have been true') ¡ñ $this->assertFalse($value, 'Value should have been false') ¡ñ $this->assertEquals($expected, $actual, 'The result is not what was expected') ¡ñ Try to write a message to indicate what specifically is being asserted ¡ð Easier to understand what's wrong instead of e.g. "Failed asserting that false is true"
  • 7. Common PHPUnit Patterns ¡ñ Use setUp() method to instantiate the class you are testing ¡ð This works well if you don't have lots of constructor parameters ¡ñ Use data providers to test lots of different inputs ¡ð Tests shouldn't have duplicate code either ¡ñ Use tearDown() method if you need to clean up external resources after each test is run ¡ð Files ¡ð Database
  • 8. Hard to Test Things ¡ñ Static calls to other classes ¡ð You cannot mock the dependency ¡ñ Singletons ¡ð Constructor is private or protected ¡ð Uses static call to get instance ¡ð Cannot guarantee there are no side effects when running multiple tests ¡ñ Private methods ¡ð Usually you indirectly test these when you test public methods ¡ð Can use reflection if you really want, but this probably means you should refactor
  • 9. Hard to Test Things ¡ñ Hard coded dependencies ¡ð Such as when a class instantiates another class ¡ñ Magic methods ¡ð __call ¡ð __get ¡ð __set
  • 10. How to Write Testable Code ¡ñ Use dependency injection ¡ð This means you don't instantiate classes unless you're in a factory ¡ñ Keep methods relatively small ¡ñ Avoid having lots of private methods ¡ñ Write classes which do one thing (single responsibility principle)
  • 11. Go go go! ¡ñ http://www.phpunit. de/manual/current/en/index.html