public function 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

File

drupal/core/vendor/phpunit/phpunit/PHPUnit/Framework/TestSuite.php, line 820

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);
}