BloomTests.Publish.EpubMakerAdjusted.CopyFile C# (CSharp) Method

CopyFile() private method

private CopyFile ( string srcPath, string dstPath ) : void
srcPath string
dstPath string
return void
        internal override void CopyFile(string srcPath, string dstPath)
        {
            if (srcPath.Contains("notareallocation"))
            {
                File.WriteAllText(dstPath, "This is a test fake");
                return;
            }
            base.CopyFile(srcPath, dstPath);
        }