| Total Complexity | 3 |
| Total Lines | 30 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | class CacheBootstrapperTest extends TestCase |
||
| 14 | { |
||
| 15 | /** @var CacheBootstrapper */ |
||
| 16 | protected CacheBootstrapper $sut; |
||
| 17 | |||
| 18 | public function setUp(): void |
||
| 19 | { |
||
| 20 | $this->sut = new CacheBootstrapper(); |
||
| 21 | } |
||
| 22 | |||
| 23 | protected function tearDown(): void |
||
| 26 | } |
||
| 27 | |||
| 28 | public function testRegisterBindings() |
||
| 43 | } |
||
| 44 | } |
||
| 45 |