Package com.griddynamics.genesis.tools.users

Examples of com.griddynamics.genesis.tools.users.SuccessfulUserCreationResponse


    }
  }

  @Then("I expect that user was deleted successfully")
  public void thenIExpectSuccessfulUserDeletion() {
    SuccessfulUserCreationResponse actResponse = request.getResponseObject(SuccessfulUserCreationResponse.class);
    SuccessfulUserCreationResponse expResponse = new SuccessfulUserCreationResponse(
        true, actUser);
    Assert.assertEquals(actResponse, expResponse);
    Assert.assertEquals(request.checkStatusCode200(), true);
   
  }
View Full Code Here


      }
  }

  @Then("I expect that user was changed successfully")
  public void thenIExpectSuccessfulUserChanges() {
    SuccessfulUserCreationResponse actResponse = request.getResponseObject(SuccessfulUserCreationResponse.class);
    SuccessfulUserCreationResponse expResponse = new SuccessfulUserCreationResponse(
        true, expUser);
    Assert.assertEquals(actResponse, expResponse);
    Assert.assertEquals(request.checkStatusCode200(), true);
  }
View Full Code Here

    request.post(expUser);
  }

  @Then("I expect that user was created successfully")
  public void thenIExpectSuccessfulUserCreation() {
    SuccessfulUserCreationResponse actResponse = request.getResponseObject(SuccessfulUserCreationResponse.class);
    SuccessfulUserCreationResponse expResponse = new SuccessfulUserCreationResponse(true,
        expUser);
    Assert.assertEquals(actResponse, expResponse);
    Assert.assertEquals(request.checkStatusCode200(), true);
  }
View Full Code Here

TOP

Related Classes of com.griddynamics.genesis.tools.users.SuccessfulUserCreationResponse

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.