Where can I find advanced HTML reporters for Simpletest?

I use Simpletest as my unit test framework for the PHP site I'm currently working on. I like the fact that it comes with a simple HTML reporter, but I would like a slightly more advanced reporter.

I read the reporter API documentation, but it would be nice to be able to use an existing reporter instead of doing it yourself.

Are there any good advanced HTML or GUI reporters for Simpletest?

The GUI tips for PHPUnit will also be appreciated, but my main focus is on Simpletest for this project. I tried the Cool PHPUnit Test Runner , but was not sure.

+5
source share
2 answers

For SimpleTest, I cannot say that I have ever found the "best" test reporters, so you may just have to hide and hack fast HTML / PHP for what you need.

As for PHPUnit, then PHPUnit2_HTML_Runner , but this is far from ideal. However, if you want to configure a continuous integration server, such as Xinc or phpUnderControl, you can get two very nice, very detailed automated testing interfaces.

+1
source

SimpleTest JUnit XML-? , CruiseControl Bamboo.

+1

All Articles