<?phpdeclare(strict_types=1);
/*
* This file is part of PHPUnit.
*
* (c) Sebastian Bergmann <sebastian@phpunit.de>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/namespacePHPUnit\Framework;
usefunctionassert;
usefunctioncount;
useRecursiveIterator;
/**
* @template-implements RecursiveIterator<int, Test>
*
* @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
*
* @internal This class is not covered by the backward compatibility promise for PHPUnit
*/finalclassTestSuiteIteratorimplementsRecursiveIterator{
privateint$position = 0;
/**
* @var list<Test>
*/privatereadonlyarray$tests;
publicfunction__construct(TestSuite $testSuite)
{
$this->tests = $testSuite->tests();
}
publicfunctionrewind(): void{
$this->position = 0;
}
publicfunctionvalid(): bool{
return$this->position < count($this->tests);
}
publicfunctionkey(): int{
return$this->position;
}
publicfunctioncurrent(): Test{
return$this->tests[$this->position];
}
publicfunctionnext(): void{
$this->position++;
}
/**
* @throws NoChildTestSuiteException
*/publicfunctiongetChildren(): self{
if (!$this->hasChildren()) {
thrownewNoChildTestSuiteException(
'The current item is not a TestSuite instance and therefore does not have any children.',
);
}
$current = $this->current();
assert($currentinstanceof TestSuite);
returnnewself($current);
}
publicfunctionhasChildren(): bool{
return$this->valid() && $this->current() instanceof TestSuite;
}
}