public void GpgIsInstalled() { string folder = new GpgPath().GetExeFolder(); string fullPath = Path.Combine(folder, "gpg.exe"); Console.Out.WriteLine(folder); Assert.IsTrue(File.Exists(fullPath)); }
public GnuPgpProcessor() { var path = new GpgPath(); _gpg = new GnuPG(path.GetHomeFolderPath(), path.GetExeFolder()); }