public static function PHPUnit_Framework_Assert::markTestSkipped

Mark the test as skipped.

@since Method available since Release 3.0.0

Parameters

string $message:

Throws

PHPUnit_Framework_SkippedTestError

7 calls to PHPUnit_Framework_Assert::markTestSkipped()

File

drupal/core/vendor/phpunit/phpunit/PHPUnit/Framework/Assert.php, line 2819

Class

PHPUnit_Framework_Assert
A set of assert methods.

Code

public static function markTestSkipped($message = '') {
  throw new PHPUnit_Framework_SkippedTestError($message);
}