FluentBuild.Runners.Zip.ZipDecompress.Path C# (CSharp) Method

Path() public method

public Path ( string zipFilePath ) : ZipDecompress
zipFilePath string
return ZipDecompress
        public ZipDecompress Path(string zipFilePath)
        {
            _pathToArchive = zipFilePath;
            return this;
        }

Usage Example

 public void PathShouldBeSet()
 {
     _subject.Path("temp");
     Assert.That(_subject._pathToArchive, Is.EqualTo("temp"));
 }