public function ChoiceValidatorTest::testStrictAllowsExactValue in Zircon Profile 8.0
Same name and namespace in other branches
- 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
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();
}