mageekguy\atoum\asserters\sizeOf: lines coverage

100% of 17

OPs

100% of 1

Lines

100% of 1

Branches

100% of 1

Paths
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
}