public function LengthValidatorTest::testInvalidValuesExactLessThanFour in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/validator/Tests/Constraints/LengthValidatorTest.php \Symfony\Component\Validator\Tests\Constraints\LengthValidatorTest::testInvalidValuesExactLessThanFour()
@dataProvider getThreeOrLessCharacters
File
- vendor/
symfony/ validator/ Tests/ Constraints/ LengthValidatorTest.php, line 182
Class
Namespace
Symfony\Component\Validator\Tests\ConstraintsCode
public function testInvalidValuesExactLessThanFour($value) {
$constraint = new Length(array(
'min' => 4,
'max' => 4,
'exactMessage' => 'myMessage',
));
$this->validator
->validate($value, $constraint);
$this
->buildViolation('myMessage')
->setParameter('{{ value }}', '"' . $value . '"')
->setParameter('{{ limit }}', 4)
->setInvalidValue($value)
->setPlural(4)
->setCode(Length::TOO_SHORT_ERROR)
->assertRaised();
}