You are here

public function PHP_CodeCoverage_Report_Node::getLineExecutedPercent in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/phpunit/php-code-coverage/src/CodeCoverage/Report/Node.php \PHP_CodeCoverage_Report_Node::getLineExecutedPercent()

Returns the percentage of executed lines.

Parameters

bool $asString:

Return value

int

File

vendor/phpunit/php-code-coverage/src/CodeCoverage/Report/Node.php, line 200

Class

PHP_CodeCoverage_Report_Node
Base class for nodes in the code coverage information tree.

Code

public function getLineExecutedPercent($asString = true) {
  return PHP_CodeCoverage_Util::percent($this
    ->getNumExecutedLines(), $this
    ->getNumExecutableLines(), $asString);
}