| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 3 | ||
| Bugs | 0 | Features | 2 |
| 1 | <?php |
||
| 30 | public function __construct(string $folder) { |
||
| 31 | $this->onExecute[] = [$this, "printInfo"]; |
||
| 32 | $this->suits = (new TestSuitsFinder())->getSuits($folder); |
||
| 33 | $this->testSuitFactory = new class implements ITestSuitFactory { |
||
| 34 | public function create(string $className): TestCase { |
||
| 35 | return new $className(); |
||
| 36 | } |
||
| 37 | }; |
||
| 38 | $this->folder = $folder; |
||
| 39 | } |
||
| 74 | ?> |