You are here

public function ChoiceValidatorTest::testStrictAllowsExactValue in Plug 7

File

lib/Symfony/validator/Symfony/Component/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();
}