new InetCidr(InetAddress.getByName("16.17.18.19"), 33);
}
@Test
public void testConstructor2() throws Exception {
InetCidr cidr0 = new InetCidr(InetAddress.getByName("10.11.12.0"), 24);
InetCidr cidr1 = new InetCidr(InetAddress.getByName("10.11.12.0"), InetAddress.getByName("255.255.255.0"));
assertEquals(cidr0, cidr1);
}