예제 #1
0
 public void SetupApiMock(string httpMethod, string requestUri, object responseContent, int httpStatus = 200)
 {
     TestHttpClient.SetupApiMock(httpMethod, requestUri, responseContent, httpStatus);
 }
예제 #2
0
 public IList <RequestReceivedEventArgs> GetApiCalledRecords(string httpMethod, string requestUri, string requestContent)
 {
     return(TestHttpClient.GetApiCalledRecords(httpMethod, requestUri, requestContent));
 }
예제 #3
0
 public IList <RequestReceivedEventArgs> GetAllApiCalledRecords()
 {
     return(TestHttpClient.GetAllApiCalledRecords());
 }
예제 #4
0
 public TestCaaSConnection(TestHttpClient httpClient, ComputeServiceConnection testConnection)
 {
     TestHttpClient = httpClient;
     CaaSConnection = testConnection;
 }