| Total Complexity | 5 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 3 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | final class ContainerSuiteFactory implements \MyTester\ITestSuiteFactory |
||
| 15 | { |
||
| 16 | /** @var TestCase[] */ |
||
| 17 | private array $suites; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @param TestCase[] $suites |
||
| 21 | */ |
||
| 22 | 1 | public function __construct(array $suites) |
|
| 25 | } |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @param class-string $className |
||
| 29 | */ |
||
| 30 | 1 | public function create(string $className): TestCase |
|
| 40 |