public function ChoiceValidatorTest::testValidCallbackExpected 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::testValidCallbackExpected()
@expectedException \Symfony\Component\Validator\Exception\ConstraintDefinitionException
File
- vendor/
symfony/ validator/ Tests/ Constraints/ ChoiceValidatorTest.php, line 71
Class
Namespace
Symfony\Component\Validator\Tests\ConstraintsCode
public function testValidCallbackExpected() {
$this->validator
->validate('foobar', new Choice(array(
'callback' => 'abcd',
)));
}