You are here

public function CountValidatorTest::testTooManyValuesExact in Zircon Profile 8

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

@dataProvider getFiveOrMoreElements

File

vendor/symfony/validator/Tests/Constraints/CountValidatorTest.php, line 155

Class

CountValidatorTest
@author Bernhard Schussek <bschussek@gmail.com>

Namespace

Symfony\Component\Validator\Tests\Constraints

Code

public function testTooManyValuesExact($value) {
  $constraint = new Count(array(
    'min' => 4,
    'max' => 4,
    'exactMessage' => 'myMessage',
  ));
  $this->validator
    ->validate($value, $constraint);
  $this
    ->buildViolation('myMessage')
    ->setParameter('{{ count }}', count($value))
    ->setParameter('{{ limit }}', 4)
    ->setInvalidValue($value)
    ->setPlural(4)
    ->setCode(Count::TOO_MANY_ERROR)
    ->assertRaised();
}