You are here

public function IpValidatorTest::testInvalidReservedIpsAll 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::testInvalidReservedIpsAll()

@dataProvider getInvalidReservedIpsAll

File

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

Class

IpValidatorTest

Namespace

Symfony\Component\Validator\Tests\Constraints

Code

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