public function ChoiceValidatorTest::testTooFewChoices in Plug 7        
                          
                  
                        
File
 
   - lib/Symfony/validator/Symfony/Component/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();
}