News Feed
Jobs Feed
Sections




News Archive
Gonzalo Ayuso:
The reason why singleton is a "problem" with PHPUnit
September 24, 2012 @ 11:57:02

Gonzalo Ayuso has a new post that responds to the idea that "singletons are a problem when testing" your applications with something like PHPUnit.

Maybe this pattern is not as useful as it is in J2EE world. With PHP everything dies within each request, so we cannot persist our instances between requests (without any persistent mechanism such as databases, memcached or external servers). But at least in PHP we can share the same instance, with this pattern, in our script.

He illustrates a bad side effect of this sharing of resources with a simple unit test that increments a counter in a class. He notes that, because the script shares the object, you can't reliably know the state of it as you don't know what's happened before your use. He recommends two things to help the situation - either not use them at all or destroy the instance each time after using it (counterproductive to using a Singleton, obviously).

0 comments voice your opinion now!
singleton designpattern problem resource sharing


blog comments powered by Disqus

Similar Posts

PHPClasses.org: Book Review: Wicked Cool PHP: Real-World Scripts That Solve Difficult Problems

PHP.net: PHP 4.4.6 Released

Gonzalo Ayuso's Blog: Moving singleton and factory patterns to Abstract with php 5.3

Nexen.net: English Articles and a Single Distribution Resource

Christopher Kunz's Blog: Warning about the article "SQL Injection" in current "PHP Magazin"


Community Events











Don't see your event here?
Let us know!


usergroup framework database rest zendframework2 development functional interview podcast conference release testing community introduction symfony2 language series google phpunit opinion

All content copyright, 2013 PHPDeveloper.org :: info@phpdeveloper.org - Powered by the Solar PHP Framework