public function PHPUnit_Extensions_RepeatedTest::count

Counts the number of test cases that will be run by this test.

Return value

integer

Overrides PHPUnit_Extensions_TestDecorator::count

File

drupal/core/vendor/phpunit/phpunit/PHPUnit/Extensions/RepeatedTest.php, line 118

Class

PHPUnit_Extensions_RepeatedTest
A Decorator that runs a test repeatedly.

Code

public function count() {
  return $this->timesRepeat * count($this->test);
}