News Feed
Jobs Feed
Sections




News Archive
feed this:

Matthew Turland's Blog:
Process Isolation in PHPUnit
August 20, 2010 @ 09:26:41

Matthew Turland has a new post today about isolating tests in PHPUnit testing to try to avoid overlap in the resources each needs.

One requirement of the test suite was that some test methods had to be run in a separate process since class declarations reside in the global scope and persist until the process terminates. So, I slapped a @runInSeparateProcess annotation in the docblock of a test method with that requirement, ran the test suite'¦ and watched that test method fail because the class was still being declared.

After come close examination of his code and the PHPUnit source, he found the issue - a misunderstanding of how the preserveGlobalState property should be set. For it to work as he wanted, it needed to be set before the run() method was called for test execution. To correct the issue in his code, he overrides the run() method to set the value and call the parent.

0 comments voice your opinion now!
process isolation phpunit unittest preserveglobalstate



Community Events











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


podcast testing introduction conference community release tool language application example phpunit framework code opinion development zendframework2 unittest functional interview series

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