private function containsOnlyVirtualGroups(array $groups) : bool { foreach ($groups as $group) { if (!str_starts_with($group, '__phpunit_')) { return false; } } return true; }