I would like to know how to generate a phpunit report which tells what tests failed and what tests passed. Any configuration in the phpunit.xml? I couldn’t find any information than php coverage report.
I would something like the image below (generated by junit)

Thanks
You can create pretty much every output format you want from the the junit.xml logfile. An example for doing it yourself can be found
here,here is a tableandhere is a little more on the subject.If you want something small for multi project there is "sismo", a very minimal CI server that runs all of your local projects so that you always know their status.
Check the symfony project page for detailsUsually, as most people don’t need/want this reporting locally and want to see a little more, this isn’t done locally and
a full blown Continuous Integration server like Jenkinsis usedDemo. It can show you all the information thatPHPUnitcan provide and much more.Check my setup guideto see that installation isn’t hard.Update:
Also see: SO: Web interface to phpunittests and from there the
Visual PHPUnittool.