assertEquals(0, IPRange.compare(InetAddress.getByName("127.0.0.0"), InetAddress.getByName("127.0.0.0")));
}
public void testGeneric() throws Exception {
IPRange oRange = new IPRange(InetAddress.getByName("127.0.0.0"),
InetAddress.getByName("127.0.0.255"));
StandardAssertions(oRange);
IPRange oRange2 = new IPRange(InetAddress.getByName("127.0.0.255"),
InetAddress.getByName("127.0.0.0"));
StandardAssertions(oRange2);
}