Re: [PHP] Unit testing in PHP

2010-06-17 Thread Adam Richardson
> > From: vikash > > > What do you use for unit testing in PHP? phpUnit, SimpleTest or any > other? > SimpleTest because of the flexibility. Adam -- Nephtali: PHP web framework that functions beautifully http://nephtaliproject.com

RE: [PHP] Unit testing in PHP

2010-06-17 Thread Bob McConnell
From: vikash > What do you use for unit testing in PHP? phpUnit, SimpleTest or any other? I use Mike Lively's "PHP TAP Test Harness" with test-more.php from the "Apache Test Harness." This requires a CLI interpreter be installed. I was already familiar with the equivalent packages in Perl, and th

Re: [PHP] Unit testing in PHP

2010-06-17 Thread Pavan Keshavamurthy
On Thursday 17 Jun 2010 3:21:18 pm vikash.i...@gmail.com wrote: > Hi, > > What do you use for unit testing in PHP? phpUnit, SimpleTest or any other? I tend to prefer SimpleTest. Mock Objects and the Web UI are IMO, way better than what they are with PHPUnit (the last I saw of it). Besides, ever

Re: [PHP] Unit testing in PHP

2010-06-17 Thread Ken Guest
On Thu, Jun 17, 2010 at 10:51 AM, wrote: > Hi, > > What do you use for unit testing in PHP? phpUnit, SimpleTest or any other? > > Ages ago, when it was new and shiny I did use SimpleTest. Now I mostly use phpunit - though where necessary (for example if I'm patching a PEAR package that uses them)