Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
26 | public function testGetProviderNoSource() |
||
27 | { |
||
28 | $config = array( |
||
29 | 'adapter' => 'Replicate', |
||
30 | ); |
||
31 | $object = new FlyReplicate( $config ); |
||
32 | $this->assertInstanceof( '\Aimeos\MW\Filesystem\Iface', $object ); |
||
33 | |||
34 | $this->setExpectedException( 'Aimeos\MW\Filesystem\Exception' ); |
||
35 | $object->has( 'test' ); |
||
36 | } |
||
37 | |||
52 |