I've been writing a plugin for symfony to use PHPUnit instead of their testing framework.
Only issue I've had (in PHPUnit 3.2 at least) is that all of the methods and variables on PHPUnit_Util_Log_TAP are private instead of protected - I wanted to add colour support, which means overwriting way more than I needed to.
Other than that, the Selenium integration is wonderful, and PHPUnit is making me happy to be a PHP dev again!
14/09/2007 at 06:31 Permalink
I've been writing a plugin for symfony to use PHPUnit instead of their testing framework.
Only issue I've had (in PHPUnit 3.2 at least) is that all of the methods and variables on PHPUnit_Util_Log_TAP are private instead of protected - I wanted to add colour support, which means overwriting way more than I needed to.
Other than that, the Selenium integration is wonderful, and PHPUnit is making me happy to be a PHP dev again!
Reply
14/09/2007 at 13:39 Permalink
I opened up the TAP class and changed the attributes and methods in question to be protected instead of private.
HTH,
Sebastian
Reply
14/09/2007 at 14:30 Permalink
Cheers,
Josh
Reply