Possible Duplicate:
“Web interface” to PHPUnit tests?
Are there any PHP unit testing systems that have a browser-based graphical interface to run the tests in (similar to this : http://view.jquery.com/tags/1.3.2/test/)?
All the unit test options I have looked at allow you to run them from the command line but have not seen any (or could not find documentation on how to) that allow you to somehow run them from the browser. I ask because I don't have access to the command line on the server I would need to run unit tests from.
Update:
In the end I decided to stick with PHPUnit. SimpleTest does have what I was looking for but PHPUnit is the defacto standard in PHP unit testing. I end up switching IDE from PhpED to PhpStorm and PhpStorm has a nice feature of being about to display PHPUnit test results that run on a remote server like ReSharper does for C#/Visual Studio.