You are here

public function ChoiceValidatorTest::testStrictDisallowsDifferentType 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::testStrictDisallowsDifferentType()

File

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

Class

ChoiceValidatorTest

Namespace

Symfony\Component\Validator\Tests\Constraints

Code

public function testStrictDisallowsDifferentType() {
  $constraint = new Choice(array(
    'choices' => array(
      1,
      2,
    ),
    'strict' => true,
    'message' => 'myMessage',
  ));
  $this->validator
    ->validate('2', $constraint);
  $this
    ->buildViolation('myMessage')
    ->setParameter('{{ value }}', '"2"')
    ->setCode(Choice::NO_SUCH_CHOICE_ERROR)
    ->assertRaised();
}