Constructor.
@since Method available since Release 3.3.4
Parameters
mixed $out:
Throws
PHPUnit_Framework_Exception
Overrides PHPUnit_Util_Printer::__construct
File
- drupal/core/vendor/phpunit/phpunit/PHPUnit/Util/Log/TAP.php, line 82
Class
- PHPUnit_Util_Log_TAP
- A TestListener that generates a logfile of the
test execution using the Test Anything Protocol (TAP).
Code
public function __construct($out = NULL) {
parent::__construct($out);
$this
->write("TAP version 13\n");
}