write() 공개 메소드

Write the xml structure to a file path
public write ( $path )
$path
예제 #1
0
 /**
  * Write output to JUnit format if requested
  */
 private function log()
 {
     if (!isset($this->options->filtered['log-junit'])) {
         return;
     }
     $output = $this->options->filtered['log-junit'];
     $writer = new Writer($this->interpreter, $this->options->path);
     $writer->write($output);
 }