@BeforeClass
  public static void setUpBeforeClass() throws Exception {
    TEST_UTIL.startMiniCluster(3);
    REST_TEST_UTIL.startServletContainer(TEST_UTIL.getConfiguration());
    localAdmin = TEST_UTIL.getHBaseAdmin();
    remoteAdmin = new RemoteAdmin(new Client(
      new Cluster().add("localhost", REST_TEST_UTIL.getServletPort())),
      TEST_UTIL.getConfiguration());
    if (localAdmin.tableExists(TABLE_1)) {
      localAdmin.disableTable(TABLE_1);
      localAdmin.deleteTable(TABLE_1);