up vote 45 down vote favorite
20
share [g+] share [fb]

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?

link|improve this question

47% accept rate
feedback

8 Answers

up vote 9 down vote accepted

This question is qute dated but as it is still getting traffic and answers I though I state my point here again even so I already did it on some other (newer) questions.

I'm really really baffled that SimpleTest still is considered an alternative to phpunit. Maybe i'm just misinformed but as far as I've seen:

  • PHPUnit is the standard; most frameworks use it (like Zend Framework (1&2), Cake, Agavi, even Symfony is dropping their own Framework in Symfony 2 for phpunit).
  • PHPUnit is integrated in every PHP IDE (Eclipse, Netbeans, Zend Stuide, PHPStorm) and works nicely.
  • Simpletest has an eclipse extension for PHP 5.1 (a.k.a. old) and nothing else.
  • PHPUnit works fine with every continuous integration server since it outputs all standard log files for code coverage and test reports.
  • Simpletest does not. While this is not a big problem to start with it will bite you big time once you stop "just testing" and start developing software (Yes that statement is provocative :) Don't take it too seriously).
  • PHPUnit is activly mainted, stable and works great for every codebase, every scenario and every way you want to write your tests.
  • **SimpleTest is unmaintained, outdated and does not work well with PHP 5.3 which released over 2 year ago!.
  • (Subjective) PHPUnit provides much nicer code coverage reports than Simpletest
  • With PHPUnit you also get these reports inside your IDE (Netbeans, Eclipse, ...)

I've yet to see any argument in favor of Simpletest. It's not even simpler to install since PHPUnit is available via pear:

pear channel-discover pear.phpunit.de
pear install phpunit/PHPUnit

and the "first test" looks pretty much the same.

For everything you want to test PHPUnit will have a solution and you will be able to find help pretty much anywhere (SO, #phpunit irc channel on freenode, pretty much every php developer ;) )

Please correct me if i've stated something wrong or forgot something :)

Overview of PHP Testing tools

Video: http://conference.phpnw.org.uk/phpnw11/schedule/sebastian-bergmann/

Slides: http://www.slideshare.net/sebastian_bergmann/the-php-testers-toolbox-osi-days-2011

It mentions stuff like Atoum which calls its self: "A simple, modern and intuitive unit testing framework for PHP!"


Full disclosure

I've originally written this answer Jan. 2011 where I had no affiliation with any PHP Testing project. Since then I because a contributor to PHPUnit.

link|improve this answer
Is there an adapter in PHPUnit to turn a directory of written simpletest files into a PHPUnit group of tests so they can run along? – hakre Jan 3 at 17:33
feedback

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 (as does SimpleTest), 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.

EDIT: Phing now integrates with SimpleTest as well.

link|improve this answer
3  
Just a note, phing's website says it supports SimpleTest – philfreo Dec 9 '10 at 19:38
feedback
  • 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|improve this answer
4  
I suppose the documentation has changed since you posted your answer then. Today, you just type 3 commands and it will be installed, you dont even have to download anything yourself. – Anti Veeranna Sep 18 '10 at 16:17
3  
You can install PHPUnit via PEAR, manually download it or pull the latest code from github. There is a clear link to the install instructions on the homepage. SimpleTest only gives me one option, pointing to sourceforge and it's myriad of commercials... – Potherca Oct 1 '10 at 7:26
Under Windows, PHPUnit is a pain to install. I had to install it on 2 workstation. The first one took 3 hours, with the help of the PEAR IRC chanel. For the second one (same OS) I never succeeded. That said, on Linux it's a charm. – FMaz008 Sep 20 '11 at 17:26
aptitude install phpunit – Johan Oct 8 '11 at 10:59
SimpleTest +1 Easy to install Easy to use. PHPUnit is powerful than, however,simpletest to satisfy my needs. – SilverNight Jan 4 at 1:51
feedback

Baphled has a nice article on SimpleTest vs PHPUnit3.

link|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
feedback

As it has been pointed, it's mostly a preference choice, as both will run the tests you write for it and report back the results.

The Simpletest web UI is very useful, but it can also sometimes get cumbersome. In my current project, I would have had to put more work into a system to make my application (an API) work with the web interface (set up apache correctly, copy files to the public_html root, etc.) than it would have been to simply run phpunit from the eclipse workspace. Therefore I choose PHPUnit. Also, the use of PEAR was a big plus since you don't need to manually track updates. Simply run pear upgrade once in a while and PHPUnit will be kept up-to-date.

link|improve this answer
feedback

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|improve this answer
feedback

Your Answer

 
or
required, but never shown

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