mDataRequest = builder.build();
mKiji = Kiji.Factory.open(getKijiURI(), getConf());
LOG.info("Creating test table.");
final TableLayoutDesc layout = KijiTableLayouts.getLayout(KijiTableLayouts.DELETES_TEST);
mKiji.createTable(layout);
LOG.info("Populating test table.");
mTable = mKiji.openTable(layout.getName());
mWriter = mTable.openTableWriter();
mWriter.put(mTable.getEntityId("alpha"), "group", "a", 1L, "1");
mWriter.put(mTable.getEntityId("alpha"), "group", "a", 2L, "2");
mWriter.put(mTable.getEntityId("alpha"), "group", "a", 3L, "3");
mWriter.put(mTable.getEntityId("alpha"), "group", "b", 3L, "3");