public void CopyToFile()
        {
            var destPath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "res.txt");

            _resource.CopyToFile(destPath);

            FileAssert.Exists(destPath);
        }