public function ChoiceValidatorTest::testStrictAllowsExactValue in Plug 7
File
- lib/Symfony/ validator/ Symfony/ Component/ Validator/ Tests/ Constraints/ ChoiceValidatorTest.php, line 246 
Class
Namespace
Symfony\Component\Validator\Tests\ConstraintsCode
public function testStrictAllowsExactValue() {
  $constraint = new Choice(array(
    'choices' => array(
      1,
      2,
    ),
    'strict' => true,
  ));
  $this->validator
    ->validate(2, $constraint);
  $this
    ->assertNoViolation();
}