How to wrap PHPUnit to control command line reporting?

zimer

New Member
So I've got a lot of PHPUnit tests (they are actually Selenium tests running as PHPUnit tests). When I run them from the command line, I get this sort of reporting as the tests complete:\[code\]..E..F..E.FF...\[/code\]Then I have to wait until all the tests finish running before it will tell me the errors and what failed. I would like to be able to control this so I can do some more useful reporting. For example:\[code\]testLogin ....... passedtestFoobar ...... failed - Failed asserting that foo = true on line 123testBazbat ...... passed\[/code\]How can I get control over how PHPUnit displays the results?
 
Back
Top