100% of 17OPs |
100% of 1Lines |
100% of 1Branches |
100% of 1Paths |
Method | OPs | OPs % | Lines | Line % | Branches | Branches % | Paths | Path % |
---|---|---|---|---|---|---|---|---|
mageekguy\atoum\asserters\sizeOf::setWith() | 17 | 100% | 1 | 100% | 1 | 100% | 1 | 100% |
# | |
---|---|
1 |
<?php |
2 |
|
3 |
namespace mageekguy\atoum\asserters; |
4 |
|
5 |
use mageekguy\atoum\asserters; |
6 |
|
7 |
class sizeOf extends asserters\integer |
8 |
{ |
9 |
public function setWith($value)100% |
10 |
{ |
11 |
return parent::setWith(sizeof($value)); |
12 |
} |
13 |
} |