Looking for more information on how to do PHP the right way? Check out PHP: The Right Way

NetTuts.com:
Mockery: A Better Way
Nov 22, 2012 @ 18:06:02

On NetTuts.com there's a new tutorial posted showing you how to use Mockery in your unit testing as an alternative to the built-in mocking tools of something like PHPUnit.

Mockery is a PHP extension that offers a superior mocking experience, particularly when compared to PHPUnit. While PHPUnit’s mocking framework is powerful, Mockery offers a more natural language with a Hamcrest-like set of matchers. In this article, I’ll compare the two mocking frameworks and highlight the best features of Mockery.

He walks you through the installation of Mockery and includes the code for a sample PHPUnit test that creates a Mockery instance and mocks out a class object for testing. He moves on to more examples including:

  • Adding expects for method calls (single and multiple)
  • Returning values from the methods
  • Calling multiple methods
  • Returning different things based on parameters
  • Partial mocks
  • Handling constructor parameters
tagged: mockery unittest library phpunit mock object tutorial

Link:


Trending Topics: