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