| Conditions | 2 |
| Paths | 2 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 16 | public function testGetProvider() |
||
| 17 | { |
||
| 18 | if( !class_exists( '\League\Flysystem\Sftp\SftpAdapter' ) ) { |
||
| 19 | $this->markTestSkipped( 'Install Flysystem SFTP adapter' ); |
||
| 20 | } |
||
| 21 | |||
| 22 | $object = new FlySftp( array( 'host' => 'test.rebex.net', 'username' => 'demo', 'password' => 'password' ) ); |
||
| 23 | $this->assertInstanceof( '\Aimeos\MW\Filesystem\Iface', $object ); |
||
| 24 | |||
| 25 | $object->has( 'test' ); |
||
| 26 | } |
||
| 27 | } |
||
| 28 |