assertEquals(bytesContainer.offset, 2050);
}
@Test
public void testBorderReallocSimple() {
BytesContainer bytesContainer = new BytesContainer();
bytesContainer.alloc((short) 1024);
int pos = bytesContainer.alloc((short) 1);
bytesContainer.bytes[pos] = 0;
assertTrue(bytesContainer.bytes.length >= 1025);
assertEquals(bytesContainer.offset, 1025);
}