public static function PHPUnit_Framework_Assert::markTestSkipped in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/phpunit/phpunit/src/Framework/Assert.php \PHPUnit_Framework_Assert::markTestSkipped()
Mark the test as skipped.
@since Method available since Release 3.0.0
Parameters
string $message:
Throws
PHPUnit_Framework_SkippedTestError
20 calls to PHPUnit_Framework_Assert::markTestSkipped()
- DataProviderSkippedTest::skippedTestProviderMethod in vendor/
phpunit/ phpunit/ tests/ _files/ DataProviderSkippedTest.php - Framework_AssertTest::testMarkTestSkipped in vendor/
phpunit/ phpunit/ tests/ Framework/ AssertTest.php - @covers PHPUnit_Framework_Assert::markTestSkipped
- Framework_MockObject_GeneratorTest::testGetMockForSingletonWithUnserializeFail in vendor/
phpunit/ phpunit-mock-objects/ tests/ GeneratorTest.php - Same as "testGetMockForSingletonWithReflectionSuccess", but we expect warning for PHP < 5.4.0 since PHPUnit will try to execute private __wakeup on unserialize
- Framework_MockObject_GeneratorTest::testGetMockForSoapClientReflectionMethodsDuplication in vendor/
phpunit/ phpunit-mock-objects/ tests/ GeneratorTest.php - ReflectionClass::getMethods for SoapClient on PHP 5.3 produces PHP Fatal Error @runInSeparateProcess
- InstantiatorTest::testExceptionOnUnSerializationException in vendor/
doctrine/ instantiator/ tests/ DoctrineTest/ InstantiatorTest/ InstantiatorTest.php
File
- vendor/
phpunit/ phpunit/ src/ Framework/ Assert.php, line 2996
Class
- PHPUnit_Framework_Assert
- A set of assert methods.
Code
public static function markTestSkipped($message = '') {
throw new PHPUnit_Framework_SkippedTestError($message);
}