public function ChoiceValidatorTest::testValidChoiceCallbackFunction in Plug 7
File
- lib/
Symfony/ validator/ Symfony/ Component/ Validator/ Tests/ Constraints/ ChoiceValidatorTest.php, line 85
Class
Namespace
Symfony\Component\Validator\Tests\ConstraintsCode
public function testValidChoiceCallbackFunction() {
$constraint = new Choice(array(
'callback' => __NAMESPACE__ . '\\choice_callback',
));
$this->validator
->validate('bar', $constraint);
$this
->assertNoViolation();
}