LogFile logFile = writer.create(null, CREDENTIALS, "");
KeyExtent ke = new KeyExtent(new Text("table1"), new Text("zzzz"), new Text("aaaaa"));
writer.defineTablet(null, logFile.id, 6, 31, ke.toThrift());
writer.close(null, logFile.id);
SequenceFile.Reader dis = readOpen(logFile);
LogFileKey key = new LogFileKey();
LogFileValue value = new LogFileValue();
assertTrue(dis.next(key, value));
assertTrue(key.event == DEFINE_TABLET);
assertEquals(key.seq, 6);
assertEquals(key.tid, 31);