public function IpValidatorTest::testInvalidPrivateIpsAll in Zircon Profile 8
Same name and namespace in other branches
- 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
Namespace
Symfony\Component\Validator\Tests\ConstraintsCode
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();
}