Home
last modified time | relevance | path

Searched refs:numTestedFunctions (Results 1 – 2 of 2) sorted by relevance

/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Node/
H A DDirectory.php108 private $numTestedFunctions = -1; variable in SebastianBergmann\\CodeCoverage\\Node\\Directory
473 if ($this->numTestedFunctions == -1) {
474 $this->numTestedFunctions = 0;
477 $this->numTestedFunctions += $child->getNumTestedFunctions();
481 return $this->numTestedFunctions;
H A DFile.php93 private $numTestedFunctions = null; variable in SebastianBergmann\\CodeCoverage\\Node\\File
376 if ($this->numTestedFunctions === null) {
377 $this->numTestedFunctions = 0;
382 $this->numTestedFunctions++;
387 return $this->numTestedFunctions;