| Total Complexity | 3 |
| Total Lines | 26 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | class BuildersBootstrapperTest extends TestCase |
||
| 12 | { |
||
| 13 | /** @var BuildersBootstrapper */ |
||
| 14 | protected BuildersBootstrapper $sut; |
||
| 15 | |||
| 16 | public function setUp(): void |
||
| 17 | { |
||
| 18 | $this->sut = new BuildersBootstrapper(); |
||
| 19 | } |
||
| 20 | |||
| 21 | protected function tearDown(): void |
||
| 22 | { |
||
| 23 | Environment::unsetVar(Env::ENV_NAME); |
||
| 24 | } |
||
| 25 | |||
| 26 | public function testRegisterBindings() |
||
| 37 | } |
||
| 38 | } |
||
| 39 |