PHPUnit_Extensions_RepeatedTest::count PHP Method

count() public method

Counts the number of test cases that will be run by this test.
public count ( ) : integer
return integer
    public function count()
    {
        return $this->timesRepeat * count($this->test);
    }
PHPUnit_Extensions_RepeatedTest