Beispiel #1
0
 public void GivenIHaveAnApiEndPointAt(string p_EndPoint)
 {
     // Save the end point in the Scenario context
     if (ScenarioContext.Current.ContainsKey("API_URL"))
     {
         ScenarioContext.Current.Remove("API_URL");
     }
     ScenarioContext.Current["API_URL"] = p_EndPoint;
     _api_requestresponse = new APIRequestResponse();
 }
Beispiel #2
0
 public void GivenIHaveALocalApiEndPointAtPort(string p_Port)
 {
     _api_requestresponse = new APIRequestResponse();
 }