예제 #1
0
파일: PactMaker.cs 프로젝트: vip32/Pactify
 public IPactMaker PublishedViaHttp(string url, HttpMethod method, string apiKey = null)
 {
     _publisher = new HttpPactPublisher(url, method, apiKey);
     return(this);
 }
예제 #2
0
파일: PactMaker.cs 프로젝트: vip32/Pactify
 public IPactMaker PublishedAsFile(string localPath)
 {
     _publisher = new FilePactPublisher(localPath);
     return(this);
 }