Home
last modified time | relevance | path

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

/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/
H A DTestSuite.php73 protected $numTests = -1; variable in PHPUnit_Framework_TestSuite
214 $this->numTests = -1;
372 $this->numTests = -1;
407 $numTests = $this->cachedNumTests;
409 $numTests = 0;
412 $numTests += count($test);
415 $this->cachedNumTests = $numTests;
418 return $numTests;
683 $numTests = count($this);
685 for ($i = 0; $i < $numTests; $i++) {
[all …]
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/TextUI/
H A DResultPrinter.php74 protected $numTests = -1; variable in PHPUnit_TextUI_ResultPrinter
494 if ($this->numTests == -1) {
495 $this->numTests = count($suite);
496 $this->numTestsWidth = strlen((string) $this->numTests);
564 || $this->numTestsRun == $this->numTests
566 if ($this->numTestsRun == $this->numTests) {
575 $this->numTests,
576 floor(($this->numTestsRun / $this->numTests) * 100)
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/
H A DFile.php307 $numTests = count($coverageData[$i]);
311 } elseif ($numTests == 0) {
317 if ($numTests > 1) {
318 $popoverTitle = $numTests . ' tests cover line ' . $i;