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

Zumba Engineering Blog:
Mocking Singleton PHP classes with PHPUnit
Nov 26, 2012 @ 15:51:04

On the Zumba Engineering blog today Chris Taylor has a new post about mocking in PHPUnit, specifically how to handle those pesky Singleton methods lurking around your codebase.

In many of our projects, utilities and vendor classes are implemented with a singleton pattern. [...] In this post, we’ll cover a nice way to inject a PHPUnit mock object for use in testing methods that utilize singleton classes.

He starts by introducing mocking and how to use mock classes in PHPUnit with a simple "sayHello" example. Adding on another layer, he creates a "SomeclassMock" class, defining its own "expects" and "cleanup" methods. This class forces the Singleton method to act more like a regular non-static method and "resets" it after each use.

tagged: mocking phpunit class singleton expects cleanup tutorial

Link:

PHP-Coding-Practices.com:
Making CakePHP's Pagination work with Model::expects()
Aug 24, 2007 @ 12:55:00

Tim Koschuetzki has posted a new CakePHP-related tutorial to the PHP-Coding-Practices.com website today showing a method that gets the framework's pagination to cooperate with a Model's expects() method.

Making CakePHP's pagination work together with Mariano Iglesias' expect functionality seems to be impossible. The expect()'ed associations are only used in the paginator's findCount() call, but not in the findAll() call which actually retrieves the results. Come on join me and find out how to fix this.

His solution involves the creation of a custom pagination method that ends up calling the Paginator helper with some special parameters (replacing the non-cooperative defaults).

tagged: cakephp framework pagination model expects method cakephp framework pagination model expects method

Link:

PHP-Coding-Practices.com:
Making CakePHP's Pagination work with Model::expects()
Aug 24, 2007 @ 12:55:00

Tim Koschuetzki has posted a new CakePHP-related tutorial to the PHP-Coding-Practices.com website today showing a method that gets the framework's pagination to cooperate with a Model's expects() method.

Making CakePHP's pagination work together with Mariano Iglesias' expect functionality seems to be impossible. The expect()'ed associations are only used in the paginator's findCount() call, but not in the findAll() call which actually retrieves the results. Come on join me and find out how to fix this.

His solution involves the creation of a custom pagination method that ends up calling the Paginator helper with some special parameters (replacing the non-cooperative defaults).

tagged: cakephp framework pagination model expects method cakephp framework pagination model expects method

Link:


Trending Topics: