Get up to 80 % extra points for free! More info:

Lesson 6 - Dependency Injection and Test doubles

In the previous lesson, PHP Testing - Xdebug and coverage reports, we learned to work with Xdebug and generate code-coverage reports. In today's PHP tutorial, we're going to start with the last topic associated with unit tests and that's mocking.

Motivation

Our unit tests worked only with simple classes that had no dependencies so far. But how to test classes that need some other class instances to work and even these instances may need another instances of other classes? We often talk about the System Under Test (SUT), which refers to just a small part of a larger system we're currently testing. As for our calculator, we can imagine it needs some logger to work, which stores computed problems into a file. That still wouldn't be such a problem, we could test the logger as well, and the calculator test would normally log the problems and we could just live with that. But how would we test classes that work with a web API? For example, the calculator would share the results on Facebook. We certainly don't want to run such a "madness" in tests and share something on our Facebook at the end of the tests. Tests shouldn't even require an Internet connection unless it's our intention to test the communication between our own APIs with the integration tests. Here we use mocking that allows us to create "fake objects", for example, an object that behaves as an instance of the FacebookApi class, but it actually provides prepared "fake" data only and calling its methods won't cause a real requests to Facebook.

Dependency injection

To be able to use mocking, which means to provide fake objects in our tests, we need to use Dependency injection. It's a design pattern that is so important that we can


 

...End of the preview...
Continue further

You will gain knowledge worth hundreds of thousands for a few crowns

You've come here and that's great! We believe that the first lessons showed you something new and useful
Do you want to continue the course? Go to the premium section.

Buy this course

Buy all currently available lessons with exercise submitting and other features for just $41.94
Current account balance $0
By buying this package, you'll have access to all 23 articles (23 lessons) in this course.

Before buying this article, you have to buy the previous one

This article is licensed: Premium III, by buying this article, you agree with the terms of use.

What will you get from us in the next lessons?
  • Unlimited and permanent access to individual lessons.
  • High quality IT knowledge.
  • Skills to help you get your dream and well-paid job.

Article description

Requested article covers this content:

In the tutorial, we'll explain the Dependency Injection design pattern and introduce the test doubles - Dummy, Fake, Stub, Spy and, of course, Mock.

You gain credits by supporting our network. This is done by sending a helpful amount of money to support the site, or by creating content for the network.

Article has been written for you by David Capka Hartinger
Avatar
The author is a programmer, who likes web technologies and being the lead/chief article writer at ICT.social. He shares his knowledge with the community and is always looking to improve. He believes that anyone can do what they set their mind to.
Unicorn university David learned IT at the Unicorn University - a prestigious college providing education on IT and economics.
Activities