You are here

public function PHPUnit_Framework_SkippedTestCase::__construct in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/phpunit/phpunit/src/Framework/SkippedTestCase.php \PHPUnit_Framework_SkippedTestCase::__construct()

Parameters

string $message:

Overrides PHPUnit_Framework_TestCase::__construct

File

vendor/phpunit/phpunit/src/Framework/SkippedTestCase.php, line 51

Class

PHPUnit_Framework_SkippedTestCase
A skipped test case

Code

public function __construct($className, $methodName, $message = '') {
  $this->message = $message;
  parent::__construct($className . '::' . $methodName);
}