/**
*
*/
public function testApiGetType_ThrowsException_WhenGetMetadataOnModelThrowsException()
{
$path = 'path';
$expected = new Exception();
$ex = null;
$this->expect('getMetadata', [$path])->willThrow($expected);
try {
$this->fs->getType($path);
} catch (Exception $ex) {
}
$this->assertInstanceOf(ReadException::class, $ex);
$this->assertSame($expected, $ex->getPrevious());
}