vote up 7 vote down star
6

I was wondering if anyone that have experience in both these stuff can shed some light on the significant difference between the two, if any?

Any specific strength of each that makes it suitable for any specific case?

flag

47% accept rate

7 Answers

vote up 8 vote down check

They are essentially the same.

PHPUnit has simple code coverage support and more flexible internals. SimpleTest has mock objects, but you can use the mocks with PHPUnit. SimpleTest has more precise type checking assertions as well. The main add on though is the web testing. There are other tools for that as well, but then you have to integrate them.

I guess the main advantage of SimpleTest is that all of the main tools, unit testing, web testing and mock objects are in one package.

link|flag
5  
I don't know when the last time you checked PHPUnit, but it has mocks, integration with Selenium, an extensive number of asserts for a variety of checks, you seem to imply otherwise, and that's completely wrong. – Saem Mar 4 at 22:36
vote up 6 vote down

I prefer PHPUnit now, but when I started out I used SimpleTest as I didn't always have access to the command line. SimpleTest is nice, but the only thing it really has over PHPUnit, in my opinion, is the web runner.

The reasons I like PHPUnit are that it integrates with other PHP developer tools such as phing, phpUnderControl, and Xinc. As of version 3.0 it has mocking support, is being actively developed, and the documentation is excellent.

Really the only way to answer this question for yourself is to try both out for a time, and see which fits your style better.

link|flag
vote up 2 vote down

Baphled has a nice article on SimpleTest vs PHPUnit3.

link|flag
vote up 1 vote down

I found SimpleTest was even easier than PHPUnit to set up. Just extract it and you are good to go. A benefit of this is if you are working at more than one machine, since you can store the whole testing framework the same way as your source code, and thereby know that you are using the same framework code. Especially if you modify it in any way.

So, I would say that a strength of SimpleTest is that it is very light weight and portable.

SimpleTest also ships with a very simple HTML GUI, which is quite easy to extend if you want to. As far as I know, PHPUnit does not include a HTML GUI, but there are GUI:s available to download, such as Cool.

link|flag
vote up 1 vote down

Well I made a phpUnit web based UI test case runner and made it available on sourceforge. Uses ajax and has quite cool interface as well if you want to give it a shot check it at sourceforge. The project name is phpunitwebui and the website is http://phpunitwebui.sourceforge.net/

link|flag
vote up 0 vote down

I haven't checked Simple Test for a while, last time it had an eclipse plugin, which is a major factor for me, but it hasn't been updated for a long time. Sebastian Bergmann is still very actively working on PHPUnit, but it still lacks a good plugin for eclipse - but it is included for the new Zend Studio.

link|flag
vote up 0 vote down
  • I could NOT understand how to download and install PHPUnit.
  • I could, however, easily understand how to install SimpleTest.

    (As far as i can remember the instructions for PHPUnit said something along the lines of "install it via PEAR and we won't give any instructions on how to do it any other way") see:

  • http://www.phpunit.de/manual/current/en/installation.html

For SimpleTest, just download it and point to it from your code.

So Simpletest won for me.

link|flag

Your Answer

Get an OpenID
or

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