mageekguy\atoum\report\fields\runner\failures\execute\unix\phpstorm: lines coverage

100% of 11

OPs

100% of 1

Lines

100% of 1

Branches

100% of 1

Paths
Method OPs OPs % Lines Line % Branches Branches % Paths Path %
mageekguy\atoum\report\fields\runner\failures\execute\unix\phpstorm::getCommand() 11 100% 1 100% 1 100% 1 100%
#
1
<?php
2

                    
3
namespace mageekguy\atoum\report\fields\runner\failures\execute\unix;
4

                    
5
use
6
	mageekguy\atoum,
7
	mageekguy\atoum\report\fields\runner\failures
8
;
9

                    
10
class phpstorm extends failures\execute
11
{
12
	public function getCommand()100%
13
	{
14
		return parent::getCommand() . ' --line %2$d %1$s &> /dev/null &';
15
	}
16
}