Many unit testing usually have very clean output, some just outputs a dot showing each test being executed.
I was wondering if we could have a --verbose option from command-line (or HTML) to include the successful tests as well.
In my case, specifically, I want to see the test_case->method being called... for troubleshooting, it kind of helps a lot.
So I appended this line in invoker.php (at SimpleInvoker->invoke() method):
echo get_class($this->test_case)."->".$method."\n";
I looked a bit in the code, but got stuck on the reporters and scorers which have same $reporter name... so I couldn't reach this method from the initial command line executing script... so I figured that asking for you would be much faster. Or maybe you guys have different suggestions...
Thanks.