100% of 14OPs |
100% of 1Lines |
100% of 1Branches |
100% of 1Paths |
Method | OPs | OPs % | Lines | Line % | Branches | Branches % | Paths | Path % |
---|---|---|---|---|---|---|---|---|
mageekguy\atoum\php\mocker\adapter\invoker::invoke() | 14 | 100% | 1 | 100% | 1 | 100% | 1 | 100% |
# | |
---|---|
1 |
<?php |
2 |
|
3 |
namespace mageekguy\atoum\php\mocker\adapter; |
4 |
|
5 |
use mageekguy\atoum\test\adapter; |
6 |
|
7 |
class invoker extends adapter\invoker |
8 |
{ |
9 |
public function invoke(array $arguments = array(), $call = 0)100% |
10 |
{ |
11 |
return parent::invoke($arguments, $call); |
12 |
} |
13 |
} |