You are here

public function PHPUnit_Util_Log_TAP::startTestSuite in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/phpunit/phpunit/src/Util/Log/TAP.php \PHPUnit_Util_Log_TAP::startTestSuite()

A testsuite started.

Parameters

PHPUnit_Framework_TestSuite $suite:

Overrides PHPUnit_Framework_TestListener::startTestSuite

File

vendor/phpunit/phpunit/src/Util/Log/TAP.php, line 160

Class

PHPUnit_Util_Log_TAP
A TestListener that generates a logfile of the test execution using the Test Anything Protocol (TAP).

Code

public function startTestSuite(PHPUnit_Framework_TestSuite $suite) {
  $this->testSuiteLevel++;
}