100% of 30OPs |
100% of 5Lines |
0% of 1Branches |
100% of 1Paths |
| Method | OPs | OPs % | Lines | Line % | Branches | Branches % | Paths | Path % |
|---|---|---|---|---|---|---|---|---|
| mageekguy\atoum\reports\realtime\tap::__construct() | 30 | 100% | 5 | 100% | 1 | 0% | 1 | 100% |
| # | |
|---|---|
| 1 |
<?php |
| 2 |
|
| 3 |
namespace mageekguy\atoum\reports\realtime; |
| 4 |
|
| 5 |
use |
| 6 |
mageekguy\atoum\reports, |
| 7 |
mageekguy\atoum\report\fields |
| 8 |
; |
| 9 |
|
| 10 |
class tap extends reports\realtime |
| 11 |
{
|
| 12 |
public function __construct()100% |
| 13 |
{
|
| 14 |
parent::__construct(); |
| 15 |
|
| 16 |
$this |
| 17 |
->addField(new fields\runner\tap\plan()) |
| 18 |
->addField(new fields\test\event\tap()) |
| 19 |
; |
| 20 |
} |
| 21 |
} |