예제 #1
0
파일: IPTest.php 프로젝트: nnnnathann/piwik
 /**
  * @dataProvider getN2PTestData
  * @group Core
  * @group IP
  */
 public function testPrettyPrintInvalidInput($N)
 {
     $this->assertEquals("0.0.0.0", Piwik_IP::prettyPrint($N), bin2hex($N));
 }
예제 #2
0
 function test_prettyPrint_invalidInput()
 {
     foreach ($this->getN2PTestData() as $N) {
         $this->assertEqual(Piwik_IP::prettyPrint($N), "0.0.0.0", bin2hex($N));
     }
 }