コード例 #1
0
ファイル: FakeServer.cs プロジェクト: intfrr/mogade-csharp
 public void Stub(ApiExpectation expectation)
 {
     _expectations.Add(expectation);
 }
コード例 #2
0
ファイル: FakeServer.cs プロジェクト: intfrr/mogade-csharp
 private void SendResponse(HttpListenerContext context, string body, ApiExpectation expectation)
 {
     var response = context.Response;
      response.StatusCode = expectation.Status ?? 200;
      response.ContentLength64 = (expectation.Response ?? body).Length;
      using (var sw = new StreamWriter(response.OutputStream))
      {
     sw.Write(expectation.Response ?? body);
      }
      response.Close();
 }
コード例 #3
0
ファイル: FakeServer.cs プロジェクト: intfrr/mogade-csharp
 public void Stub(ApiExpectation expectation)
 {
     _expectations.Add(expectation);
 }