Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
20 | public function testGetProvider() |
||
21 | { |
||
22 | $object = new FlyFtp( ['host' => 'ftp.heise.de', 'username' => '', 'password' => '', 'root' => '/'] ); |
||
23 | $this->assertInstanceof( \Aimeos\Base\Filesystem\Iface::class, $object ); |
||
24 | |||
25 | $this->expectException( \Aimeos\Base\Filesystem\Exception::class ); |
||
26 | $object->has( 'test' ); |
||
27 | } |
||
29 |