You are here

public function IpValidatorTest::testInvalidPrivateIpsAll in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/validator/Tests/Constraints/IpValidatorTest.php \Symfony\Component\Validator\Tests\Constraints\IpValidatorTest::testInvalidPrivateIpsAll()

@dataProvider getInvalidPrivateIpsAll

File

vendor/symfony/validator/Tests/Constraints/IpValidatorTest.php, line 382

Class

IpValidatorTest

Namespace

Symfony\Component\Validator\Tests\Constraints

Code

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