You are here

public function IpValidatorTest::testInvalidPublicIpsAll in Plug 7

@dataProvider getInvalidPublicIpsAll

File

lib/Symfony/validator/Symfony/Component/Validator/Tests/Constraints/IpValidatorTest.php, line 426

Class

IpValidatorTest

Namespace

Symfony\Component\Validator\Tests\Constraints

Code

public function testInvalidPublicIpsAll($ip) {
  $constraint = new Ip(array(
    'version' => Ip::ALL_ONLY_PUBLIC,
    'message' => 'myMessage',
  ));
  $this->validator
    ->validate($ip, $constraint);
  $this
    ->buildViolation('myMessage')
    ->setParameter('{{ value }}', '"' . $ip . '"')
    ->assertRaised();
}