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