Zip decompresses an archive
Inheritance: FluentBuild.Utilities.InternalExecutable
 public void SetUp()
 {
     _fileSystemHelper = MockRepository.GenerateStub<IFileSystemHelper>();
     _subject = new ZipDecompress(_fileSystemHelper);
 }
 public void SetUp()
 {
     _fileSystemHelper = MockRepository.GenerateStub <IFileSystemHelper>();
     _subject          = new ZipDecompress(_fileSystemHelper);
 }
 public void ConstructorShouldCreate()
 {
     var x = new ZipDecompress();
     Assert.That(x._fileSystemHelper, Is.TypeOf<FileSystemHelper>());
 }
        public void ConstructorShouldCreate()
        {
            var x = new ZipDecompress();

            Assert.That(x._fileSystemHelper, Is.TypeOf <FileSystemHelper>());
        }