Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
26 | public function testGetProviderToken() |
||
27 | { |
||
28 | $config = array( |
||
29 | 'accesstoken' => 'test', |
||
30 | ); |
||
31 | $object = new FlyDropbox( $config ); |
||
32 | $this->assertInstanceof( \Aimeos\Base\Filesystem\Iface::class, $object ); |
||
33 | |||
34 | $this->expectException( 'Aimeos\Base\Filesystem\Exception' ); |
||
35 | $object->has( 'test' ); |
||
36 | } |
||
56 |