mageekguy\atoum\mock\streams\fs\controller\factory: lines coverage

100% of 12

OPs

100% of 1

Lines

100% of 1

Branches

100% of 1

Paths
Method OPs OPs % Lines Line % Branches Branches % Paths Path %
mageekguy\atoum\mock\streams\fs\controller\factory::build() 12 100% 1 100% 1 100% 1 100%
#
1
<?php
2

                    
3
namespace mageekguy\atoum\mock\streams\fs\controller;
4

                    
5
use
6
	mageekguy\atoum\mock\streams\fs\controller
7
;
8

                    
9
class factory
10
{
11
	public function build($name)100%
12
	{
13
		return new controller($name);
14
	}
15
}