Total Complexity | 2 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
13 | #[TestSuite("ChainTestSuitesFinderTest")] |
||
14 | final class ChainTestSuitesFinderTest extends TestCase |
||
15 | { |
||
16 | public function testGetSuites(): void |
||
17 | { |
||
18 | $testSuitesFinder = new ChainTestSuitesFinder(); |
||
19 | $testSuitesFinder->registerFinder(new class implements ITestSuitesFinder |
||
20 | { |
||
21 | public function getSuites(string $folder): array |
||
38 | } |
||
39 | } |
||
40 |