You are here

public function ChoiceValidatorTest::testTooFewChoices in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/validator/Tests/Constraints/ChoiceValidatorTest.php \Symfony\Component\Validator\Tests\Constraints\ChoiceValidatorTest::testTooFewChoices()

File

vendor/symfony/validator/Tests/Constraints/ChoiceValidatorTest.php, line 187

Class

ChoiceValidatorTest

Namespace

Symfony\Component\Validator\Tests\Constraints

Code

public function testTooFewChoices() {
  $constraint = new Choice(array(
    'choices' => array(
      'foo',
      'bar',
      'moo',
      'maa',
    ),
    'multiple' => true,
    'min' => 2,
    'minMessage' => 'myMessage',
  ));
  $value = array(
    'foo',
  );
  $this
    ->setValue($value);
  $this->validator
    ->validate($value, $constraint);
  $this
    ->buildViolation('myMessage')
    ->setParameter('{{ limit }}', 2)
    ->setInvalidValue($value)
    ->setPlural(2)
    ->setCode(Choice::TOO_FEW_ERROR)
    ->assertRaised();
}