/**
  * @dataProvider observableFilesystemManagerProvider
  */
 public function testApiMove_ThrowsException_WhenDestFsDoesNotExist(FilesystemManagerInterface $man, ObjectProphecy $p1, ObjectProphecy $p2)
 {
     $this->setExpectedException(WriteException::class);
     $man->move('fs1://path', 'not_fs://path');
 }