Code Duplication    Length = 7-7 lines in 2 locations

tests/php/UtilTest.php 2 locations

@@ 38-44 (lines=7) @@
35
        $this->assertTrue(Util::ip_greater_than('10.10.20.0', '10.10.10.20'));
36
    }
37
38
    public function testIPAfter()
39
    {
40
        $this->assertEquals('10.10.10.1', Util::ip_after('10.10.10.0'));
41
        $this->assertEquals('10.10.10.2', Util::ip_after('10.10.10.0', 2));
42
        $this->assertEquals('10.10.11.0', Util::ip_after('10.10.10.255'));
43
        $this->assertEquals('10.10.11.1', Util::ip_after('10.10.10.255', 2));
44
    }
45
46
    public function testIPBefore()
47
    {
@@ 46-52 (lines=7) @@
43
        $this->assertEquals('10.10.11.1', Util::ip_after('10.10.10.255', 2));
44
    }
45
46
    public function testIPBefore()
47
    {
48
        $this->assertEquals('10.10.10.0', Util::ip_before('10.10.10.1'));
49
        $this->assertEquals('10.10.10.0', Util::ip_before('10.10.10.2', 2));
50
        $this->assertEquals('10.10.9.255', Util::ip_before('10.10.10.0'));
51
        $this->assertEquals('10.10.9.255', Util::ip_before('10.10.10.1', 2));
52
    }
53
54
    public function testFindSmallestCidr()
55
    {