Kraken\_Unit\Filesystem\FilesystemManagerTest::testApiUnmountFilesystem_DoesNothing_WhenFsDoesNotExist PHP Method

testApiUnmountFilesystem_DoesNothing_WhenFsDoesNotExist() public method

public testApiUnmountFilesystem_DoesNothing_WhenFsDoesNotExist ( Kraken\Filesystem\FilesystemManagerInterface $fs )
$fs Kraken\Filesystem\FilesystemManagerInterface
    public function testApiUnmountFilesystem_DoesNothing_WhenFsDoesNotExist(FilesystemManagerInterface $fs)
    {
        $prefix = 'not_fs';
        $this->assertFalse($fs->existsFilesystem($prefix));
        $fs->unmountFilesystem($prefix);
        $this->assertFalse($fs->existsFilesystem($prefix));
    }
FilesystemManagerTest