| Conditions | 2 |
| Paths | 2 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | public function testGetProvider() |
||
| 17 | { |
||
| 18 | if( !class_exists( '\League\Flysystem\AzureBlobStorage\AzureBlobStorageAdapter' ) ) { |
||
| 19 | $this->markTestSkipped( 'Install Flysystem Azure adapter' ); |
||
| 20 | } |
||
| 21 | |||
| 22 | $object = new FlyAzure( ['endpoint' => 'test', 'container' => 'test'] ); |
||
| 23 | $this->assertInstanceof( \Aimeos\Base\Filesystem\Iface::class, $object ); |
||
| 24 | |||
| 25 | $this->expectException( \Aimeos\Base\Filesystem\Exception::class ); |
||
| 26 | $object->has( 'test' ); |
||
| 27 | } |
||
| 49 |