public function PHPUnit_Framework_IncompleteTestCase::__construct in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/phpunit/phpunit/src/Framework/IncompleteTestCase.php \PHPUnit_Framework_IncompleteTestCase::__construct()
Parameters
string $className:
string $methodName:
string $message:
Overrides PHPUnit_Framework_TestCase::__construct
File
- vendor/
phpunit/ phpunit/ src/ Framework/ IncompleteTestCase.php, line 53
Class
- PHPUnit_Framework_IncompleteTestCase
- An incomplete test case
Code
public function __construct($className, $methodName, $message = '') {
$this->message = $message;
parent::__construct($className . '::' . $methodName);
}