protected void printLog() { for (int i = 1; i < log.length(); i++) { System.out.println(log.get(i).toString()); } }
protected void assertCompacted(int startIndex, int endIndex) { for (int i = startIndex; i <= endIndex; i++) { assertNull(log.get(i)); } }