1 | <?php |
||
9 | class IpUtilTest extends \PHPUnit_Framework_TestCase |
||
10 | { |
||
11 | |||
12 | /** @var IpUtil */ |
||
13 | private $sut; |
||
14 | |||
15 | public function setUp() |
||
19 | |||
20 | public function testShouldBeInstantiated() |
||
24 | |||
25 | /** |
||
26 | * @dataProvider ip2decValues |
||
27 | */ |
||
28 | public function testShouldReturnCorrectValue($ip, $ipDec) |
||
34 | |||
35 | public function testShouldReturnFalse() |
||
53 | |||
54 | private function generateIp() |
||
58 | } |
||
59 |