public function PHPUnit_Framework_SyntheticError::__construct

Constructor.

Parameters

string $message:

integer $code:

string $file:

integer $line:

array $trace:

File

drupal/core/vendor/phpunit/phpunit/PHPUnit/Framework/SyntheticError.php, line 89

Class

PHPUnit_Framework_SyntheticError
Creates a synthetic failed assertion.

Code

public function __construct($message, $code, $file, $line, $trace) {
  parent::__construct($message, $code);
  $this->syntheticFile = $file;
  $this->syntheticLine = $line;
  $this->syntheticTrace = $trace;
}