Constructor.
mixed $out:
boolean $logIncompleteSkipped:
Overrides PHPUnit_Util_Printer::__construct
public function __construct($out = NULL, $logIncompleteSkipped = FALSE) {
$this->document = new DOMDocument('1.0', 'UTF-8');
$this->document->formatOutput = TRUE;
$this->root = $this->document
->createElement('testsuites');
$this->document
->appendChild($this->root);
parent::__construct($out);
$this->logIncompleteSkipped = $logIncompleteSkipped;
}