RandomPacketTester.testClass(IcmpV4CommonPacket.class, packet);
}
@Test
public void testGetHeader() {
IcmpV4CommonHeader h = packet.getHeader();
assertEquals(type, h.getType());
assertEquals(code, h.getCode());
assertEquals(checksum, h.getChecksum());
}