| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 12 | 
| Code Lines | 8 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php  | 
            ||
| 39 | public function testGetProviderNoReplica()  | 
            ||
| 40 | 	{ | 
            ||
| 41 | $config = array(  | 
            ||
| 42 | 'adapter' => 'Replicate',  | 
            ||
| 43 | 'source' => array( 'adapter' => 'FlyMemory' ),  | 
            ||
| 44 | );  | 
            ||
| 45 | $object = new FlyReplicate( $config );  | 
            ||
| 46 | $this->assertInstanceof( '\Aimeos\MW\Filesystem\Iface', $object );  | 
            ||
| 47 | |||
| 48 | $this->setExpectedException( 'Aimeos\MW\Filesystem\Exception' );  | 
            ||
| 49 | $object->has( 'test' );  | 
            ||
| 50 | }  | 
            ||
| 51 | }  | 
            ||
| 52 |