Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
18 | public function testOwn(): void |
||
19 | { |
||
20 | $store = new Storage(new Storage\Factory(new Storage\Key\Factory(), new Storage\Target\Factory())); |
||
21 | $store->init('none'); |
||
22 | $lib = new XStorage(); |
||
23 | $lib->setStorage($store); |
||
24 | $this->assertInstanceOf(Storage::class, $lib->getStorage()); |
||
25 | } |
||
37 |