Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
feat(test): added script to generate html code coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
DIOHz0r authored and ajsb85 committed Nov 7, 2017
1 parent 97c282e commit 1f50b7f
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .atoum.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?php

use mageekguy\atoum\reports\coverage;
use mageekguy\atoum\writers\std;

$script->addDefaultReport();

$coverage = new coverage\html();
$coverage->addWriter(new std\out());
$coverage->setOutPutDirectory('build/tests/coverage');

$runner->addReport($coverage);

0 comments on commit 1f50b7f

Please sign in to comment.