Package com.griddynamics.genesis.tools.servers

Examples of com.griddynamics.genesis.tools.servers.CreateServerArrayResponse


   
    @Then("New server array should be created")
    public void thenNewCredentialsWillBeCreated() {
      Assert.assertTrue(request.checkStatusCode200(), "Status code is " + request.getResponse().getStatusCode() + ", but must be 200");
       
      CreateServerArrayResponse actualResponse = request.getResponseObject(CreateServerArrayResponse.class);
      ServerArray actualArray = actualResponse.getArray();
     
      Assert.assertEquals(actualResponse.isSuccess, true);
      Assert.assertEquals(actualArray.getName(), requestBody.getName());
      Assert.assertEquals(actualArray.getDescription(), requestBody.getDescription());
      Assert.assertEquals(actualArray.getProjectId(), requestBody.getProjectId());
View Full Code Here

TOP

Related Classes of com.griddynamics.genesis.tools.servers.CreateServerArrayResponse

Copyright © 2018 www.massapicom. 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.