@Test
  @Parameters({"scim1.bulk.request_json"})
  public void bulkOperationTest(String REQUESTJSON) throws Exception {

    ScimResponse response = client.bulkOperationString(REQUESTJSON, MediaType.APPLICATION_JSON);
    assertEquals(response.getStatusCode(), 200, "Could not add the person, status != 200");

    byte[] bytes = response.getResponseBody();
    String responseStr = new String(bytes);
    ScimBulkResponse scimBulkResponse =
        (ScimBulkResponse) jsonToObject(responseStr, ScimBulkResponse.class);
    String location = scimBulkResponse.getOperations().get(0).getLocation();

    this.id = getUID(location.split("/"));
  }
  @Test(groups = "a")
  public void bulkOperationTest() throws Exception {

    response = client.bulkOperationString(REQUESTJSON, MediaType.APPLICATION_JSON);

    assertEquals(response.getStatusCode(), 200, "cold not Add the person, status != 200");
    byte[] bytes = response.getResponseBody();
    String responseStr = new String(bytes);
    scimBulkResponse = (ScimBulkResponse) jsonToObject(responseStr, ScimBulkResponse.class);
    String location = scimBulkResponse.getOperations().get(0).getLocation();
    this.uid = getUID(location.split("/"));
  }