You are here

protected static function PHPUnit_Framework_TestSuite::skipTest in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/phpunit/phpunit/src/Framework/TestSuite.php \PHPUnit_Framework_TestSuite::skipTest()

@since Method available since Release 4.3.0

Parameters

string $class:

string $methodName:

string $message:

Return value

PHPUnit_Framework_SkippedTestCase

1 call to PHPUnit_Framework_TestSuite::skipTest()
PHPUnit_Framework_TestSuite::createTest in vendor/phpunit/phpunit/src/Framework/TestSuite.php

File

vendor/phpunit/phpunit/src/Framework/TestSuite.php, line 910

Class

PHPUnit_Framework_TestSuite
A TestSuite is a composite of Tests. It runs a collection of test cases.

Code

protected static function skipTest($class, $methodName, $message) {
  return new PHPUnit_Framework_SkippedTestCase($class, $methodName, $message);
}