Example #1
0
 public IPactMaker PublishedViaHttp(string url, HttpMethod method, string apiKey = null)
 {
     _publisher = new HttpPactPublisher(url, method, apiKey);
     return(this);
 }
Example #2
0
 public IPactMaker PublishedAsFile(string localPath)
 {
     _publisher = new FilePactPublisher(localPath);
     return(this);
 }