Home
last modified time | relevance | path

Searched refs:numMethods (Results 1 – 3 of 3) sorted by relevance

/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/
H A DFile.php141 $numMethods = count($item['methods']);
152 $numTestedClasses = $numTestedMethods == $numMethods ? 1 : 0;
170 'numMethods' => $numMethods,
182 $numMethods,
187 $numMethods,
191 $numTestedMethods == $numMethods ? 1 : 0,
196 $numTestedMethods == $numMethods ? 1 : 0,
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Node/
H A DDirectory.php93 private $numMethods = -1; variable in SebastianBergmann\\CodeCoverage\\Node\\Directory
419 if ($this->numMethods == -1) {
420 $this->numMethods = 0;
423 $this->numMethods += $child->getNumMethods();
427 return $this->numMethods;
H A DFile.php83 private $numMethods = null; variable in SebastianBergmann\\CodeCoverage\\Node\\File
304 if ($this->numMethods === null) {
305 $this->numMethods = 0;
310 $this->numMethods++;
318 $this->numMethods++;
324 return $this->numMethods;