public functiongetChildren() : self {
if (!$this->hasChildren()) {
thrownewNoChildTestSuiteException('The current item is not a TestSuite instance and therefore does not have any children.');
}
$current = $this->current();
assert($current instanceof TestSuite);
returnnewself($current);
}