public void WhenICallGetMthodForThisApiUsingTodoId(string todoId)
 {
     RestAPIHelper.CreateRequest(todoId);
 }
 public void WhenICallTheGETHttpMethodOfAPI()
 {
     RestAPIHelper.CreateRequest();
 }
Exemplo n.º 3
0
 public void WhenICallGetUserInfromationUsingUser(string userId)
 {
     RestAPIHelper.CreateRequest(userId);
 }
 public void WhenICallGetMthodForThisApi()
 {
     RestAPIHelper.CreateRequest();
 }
 public void WhenICallGETMethodUsing(string userId, long accountNumber)
 {
     RestAPIHelper.CreateRequest(userId, accountNumber);
 }
Exemplo n.º 6
0
 public void WhenICallGetMethodOfApi()
 {
     RestAPIHelper.CreateRequest();
 }
 public void WhenICallTheGETMethodToGetUserInformationUsing(string userId)
 {
     RestAPIHelper.CreateRequest(userId);
 }
 public void WhenICallGETMethodOfAPI()
 {
     RestAPIHelper.CreateRequest();
 }
 public void ThenICallGetMethodOfApi()
 {
     api.CreateRequest();
 }
 public void ThenICallGetApiMethod()
 {
     api.CreateRequest();
 }
Exemplo n.º 11
0
 public void WhenISendTheRestRequestUsingGET()
 {
     RestAPIHelper.CreateRequest();
 }