Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
22 | public function testGetFallback() |
||
23 | { |
||
24 | $config = \TestHelper::getConfig()->get( 'resource' ); |
||
25 | $config['fs'] = [ |
||
26 | 'adapter' => 'Standard', |
||
27 | 'basedir' => __DIR__ |
||
28 | ]; |
||
29 | |||
30 | $object = new \Aimeos\Base\Filesystem\Manager\Standard( $config ); |
||
31 | |||
32 | $this->assertInstanceof( 'Aimeos\Base\Filesystem\Iface', $object->get( 'fs-media' ) ); |
||
33 | } |
||
35 |