Informs the result that a testsuite will be started.
@since Method available since Release 2.2.0
PHPUnit_Framework_TestSuite $suite:
public function startTestSuite(PHPUnit_Framework_TestSuite $suite) {
if ($this->topTestSuite === NULL) {
$this->topTestSuite = $suite;
}
foreach ($this->listeners as $listener) {
$listener
->startTestSuite($suite);
}
}