You are here

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

File

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

Class

ChoiceValidatorTest

Namespace

Symfony\Component\Validator\Tests\Constraints

Code

public function testStrictAllowsExactValue() {
  $constraint = new Choice(array(
    'choices' => array(
      1,
      2,
    ),
    'strict' => true,
  ));
  $this->validator
    ->validate(2, $constraint);
  $this
    ->assertNoViolation();
}