public static void testResize() {
RetransmitTable table=new RetransmitTable(3, 10, 0);
assertCapacity(table.capacity(), table.getLength(), 10);
addAndGet(table, 30, "30");
addAndGet(table, 35, "35");
assertCapacity(table.capacity(), table.getLength(), 10);
addAndGet(table, 500, "500");
assertCapacity(table.capacity(), table.getLength(), 10);
addAndGet(table, 515, "515");
assertCapacity(table.capacity(), table.getLength(), 10);