You are here

public function ChoiceValidatorTest::testInvalidChoiceEmptyChoices in Plug 7

File

lib/Symfony/validator/Symfony/Component/Validator/Tests/Constraints/ChoiceValidatorTest.php, line 153

Class

ChoiceValidatorTest

Namespace

Symfony\Component\Validator\Tests\Constraints

Code

public function testInvalidChoiceEmptyChoices() {
  $constraint = new Choice(array(
    // May happen when the choices are provided dynamically, e.g. from
    // the DB or the model
    'choices' => array(),
    'message' => 'myMessage',
  ));
  $this->validator
    ->validate('baz', $constraint);
  $this
    ->buildViolation('myMessage')
    ->setParameter('{{ value }}', '"baz"')
    ->setCode(Choice::NO_SUCH_CHOICE_ERROR)
    ->assertRaised();
}