コード例 #1
0
ファイル: html.php プロジェクト: atoum/reports-extension
 private function codeCoverageIsAvailable(model\coverage $coverage)
 {
     $coverage->renderTo($this->indexTemplate, $this->outputDirectory . DIRECTORY_SEPARATOR . 'index.html');
     return $this;
 }
コード例 #2
0
ファイル: klass.php プロジェクト: atoum/reports-extension
 public function addToModel(coverage $model)
 {
     $model->addClass($this->class, $this->coverage, $this->methods, $this->lines);
     return $this;
 }