public void SetUp() { var fixturesPath = Path.GetFullPath("Fixtures"); ZipPath = fixturesPath + Path.DirectorySeparatorChar + "ndriven-master.zip"; Extractor = new Extractor(ZipPath); }
public static void Extract(string zipPath, string destination) { var extractor = new Extractor(zipPath); extractor.ExtractToDestination(destination); }
public void Extractor_throws_exception_if_zip_file_does_not_exist() { var extractor = new Extractor("nope"); }