public void CopyFileToPermDataPath()
    {
        const string patternFileBasename = "DefaultSpawnPattern";
        const string patternFile         = patternFileBasename + "-test.xml";
        string       targetFile          = Path.Combine(Application.persistentDataPath, patternFile);

        LocalFiles.CopyResourceToPersistentData(patternFileBasename, patternFile);

        Assert.That(File.Exists(targetFile));
        File.Delete(patternFile);
    }