// TODO insufficient permissions to test
  @Test(description = "DELETE /admin/vdc/{id}", enabled = false)
  public void testRemoveVdc() throws Exception {
    // TODO Need to have a VDC that we're happy to remove!
    Task task = vdcApi.remove(vdcUrn);
    assertTaskSucceeds(task);

    try {
      vdcApi.get(vdcUrn);
    } catch (VCloudDirectorException e) {
      // success; unreachable because it has been removed
      // TODO: ^^ wrong. this should return null
    }
  }