public function PHPUnit_Framework_Warning::__construct

Parameters

string $message:

Overrides PHPUnit_Framework_TestCase::__construct

File

drupal/core/vendor/phpunit/phpunit/PHPUnit/Framework/Warning.php, line 92

Class

PHPUnit_Framework_Warning
A warning.

Code

public function __construct($message = '') {
  $this->message = $message;
  parent::__construct('Warning');
}