You are here

public function PHPUnit_Framework_TestResult::startTestSuite in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/phpunit/phpunit/src/Framework/TestResult.php \PHPUnit_Framework_TestResult::startTestSuite()

Informs the result that a testsuite will be started.

@since Method available since Release 2.2.0

Parameters

PHPUnit_Framework_TestSuite $suite:

File

vendor/phpunit/phpunit/src/Framework/TestResult.php, line 290

Class

PHPUnit_Framework_TestResult
A TestResult collects the results of executing a test case.

Code

public function startTestSuite(PHPUnit_Framework_TestSuite $suite) {
  if ($this->topTestSuite === null) {
    $this->topTestSuite = $suite;
  }
  foreach ($this->listeners as $listener) {
    $listener
      ->startTestSuite($suite);
  }
}