| Total Complexity | 2 |
| Total Lines | 27 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | class EngineBootstrapperTest extends TestCase |
||
| 15 | { |
||
| 16 | /** @var EngineBootstrapper - System Under Test */ |
||
| 17 | protected EngineBootstrapper $sut; |
||
| 18 | |||
| 19 | public function setUp(): void |
||
| 20 | { |
||
| 21 | $this->sut = new EngineBootstrapper(); |
||
| 22 | } |
||
| 23 | |||
| 24 | public function testRegisterBindings(): void |
||
| 41 | } |
||
| 42 | } |
||
| 43 |