public function PHPUnit_Framework_TestSuite::markTestSuiteSkipped in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/phpunit/phpunit/src/Framework/TestSuite.php \PHPUnit_Framework_TestSuite::markTestSuiteSkipped()
Mark the test suite as skipped.
@since Method available since Release 3.0.0
Parameters
string $message:
Throws
PHPUnit_Framework_SkippedTestSuiteError
1 call to PHPUnit_Framework_TestSuite::markTestSuiteSkipped()
- PHPUnit_Framework_TestSuite::run in vendor/
phpunit/ phpunit/ src/ Framework/ TestSuite.php - Runs the tests and collects their result in a TestResult.
File
- vendor/
phpunit/ phpunit/ src/ Framework/ TestSuite.php, line 830
Class
- PHPUnit_Framework_TestSuite
- A TestSuite is a composite of Tests. It runs a collection of test cases.
Code
public function markTestSuiteSkipped($message = '') {
throw new PHPUnit_Framework_SkippedTestSuiteError($message);
}