Examples of SuccessfulProjectCreationResponse


Examples of com.griddynamics.genesis.tools.projects.SuccessfulProjectCreationResponse

      request.post(expProject);
  }
 
  @Then("I expect that project was created successfully")
  public static void thenIExpectSuccessfulProjectCreation(){
    SuccessfulProjectCreationResponse actResponse = request.getResponseObject(SuccessfulProjectCreationResponse.class);
    SuccessfulProjectCreationResponse expResponse=new SuccessfulProjectCreationResponse(true, expProject);

    Assert.assertEquals(actResponse, expResponse);
    Assert.assertEquals(request.checkStatusCode200(), true);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.