You are here

public function LengthValidatorTest::testInvalidValuesExactMoreThanFour in Plug 7

@dataProvider getFiveOrMoreCharacters

File

lib/Symfony/validator/Symfony/Component/Validator/Tests/Constraints/LengthValidatorTest.php, line 204

Class

LengthValidatorTest

Namespace

Symfony\Component\Validator\Tests\Constraints

Code

public function testInvalidValuesExactMoreThanFour($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_LONG_ERROR)
    ->assertRaised();
}