예제 #1
0
파일: IpTest.php 프로젝트: seytar/psx
 public function testFilter()
 {
     $filter = new Ip();
     $this->assertEquals('80.80.80.80', $filter->apply('80.80.80.80'));
     $this->assertEquals(false, $filter->apply('foo'));
     // test error message
     $this->assertErrorMessage($filter->getErrorMessage());
 }