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

            extractor.ExtractToDestination(destination);
        }
Beispiel #3
0
 public void Extractor_throws_exception_if_zip_file_does_not_exist()
 {
     var extractor = new Extractor("nope");
 }
Beispiel #4
0
 public static void Extract(string zipPath, string destination)
 {
     var extractor = new Extractor(zipPath);
     extractor.ExtractToDestination(destination);
 }