| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 35 | public function testShouldReturnFalse() |
||
| 36 | { |
||
| 37 | $this->assertFalse($this->sut->ip2long('123.456.')); |
||
| 38 | $this->assertFalse($this->sut->ip2long('123.456.654')); |
||
| 39 | $this->assertFalse($this->sut->ip2long('123.123.123.')); |
||
| 40 | $this->assertFalse($this->sut->ip2long('123.123.123.458')); |
||
| 41 | } |
||
| 42 | public function ip2decValues() |
||
| 59 |