public function testInsertLong64Ip()
 {
     $ipSeg = new ipSegment("1", "4294967295");
     $this->assertTrue($ipSeg->getEndIpFloat() > $ipSeg->getStartIpFloat());
     $this->assertEquals("0.0.0.1", $ipSeg->getStartIpString());
     $this->assertEquals("255.255.255.255", $ipSeg->getEndIpString());
 }