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