Handler for 'on test' event.
string $name:
boolean $success:
Overrides PHPUnit_Util_TestDox_ResultPrinter::onTest
protected function onTest($name, $success = TRUE) {
if ($success) {
$this
->write(' [x] ');
}
else {
$this
->write(' [ ] ');
}
$this
->write($name . "\n");
}