Total Complexity | 3 |
Total Lines | 17 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
10 | final class ChainTestSuitesFinder implements ITestSuitesFinder |
||
11 | { |
||
12 | /** @var ITestSuitesFinder[] */ |
||
13 | private array $finders; |
||
14 | |||
15 | 1 | public function registerFinder(ITestSuitesFinder $finder): void |
|
16 | { |
||
17 | 1 | $this->finders[] = $finder; |
|
18 | 1 | } |
|
19 | |||
20 | 1 | public function getSuites(string $folder): array |
|
27 | } |
||
28 | } |
||
29 |