I have been looking for a tutorial to help me integrate PHPUnit with CakePHP. Looking to use Selenium tests too so prefer PHPUnit.

I have been trying to follow the tutorial on http://cakebaker.42dh.com/2006/03/22/selenium/ but cant seem to get it work. Any good tutorials out there?

Thanks!

link|improve this question

67% accept rate
feedback

1 Answer

up vote 3 down vote accepted

Unfortunately CakePHP isn't designed to work together with PHPUnit. CakePHP has switched to using SimpleTest and you'll have one of two choices, refactor your tests to work with SimpleTest or modify the core to use PHPUnit.

However it should be stated that Mark Story has stated that CakePHP 2.0 will use PHPUnit for it's testing framework, so if you can aford to wait till then that may wind up being the best option.

CakePHP Book on Testing

link|improve this answer
Thanks! I have no tests at the moment thats why I can still choose between the two. I'll spent some time trying to see if I can get CakePHP to use PHPUnit core instead. – Vinoth Gopi May 24 '11 at 9:17
SimpleTest is always problematic, especially with test data for models. – hongster Jun 3 '11 at 12:54
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.