Informs the result that a test will be started.
PHPUnit_Framework_Test $test:
public function startTest(PHPUnit_Framework_Test $test) {
$this->lastTestFailed = FALSE;
$this->runTests += count($test);
foreach ($this->listeners as $listener) {
$listener
->startTest($test);
}
}