public function PHP_CodeCoverage_Report_Node::getTestedMethodsPercent in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/phpunit/php-code-coverage/src/CodeCoverage/Report/Node.php \PHP_CodeCoverage_Report_Node::getTestedMethodsPercent()
Returns the percentage of methods that has been tested.
Parameters
bool $asString:
Return value
int
File
- vendor/
phpunit/ php-code-coverage/ src/ CodeCoverage/ Report/ Node.php, line 185
Class
- PHP_CodeCoverage_Report_Node
- Base class for nodes in the code coverage information tree.
Code
public function getTestedMethodsPercent($asString = true) {
return PHP_CodeCoverage_Util::percent($this
->getNumTestedMethods(), $this
->getNumMethods(), $asString);
}