public function CollectionValidatorTest::testRequiredFieldMultipleConstraints in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/validator/Tests/Constraints/CollectionValidatorTest.php \Symfony\Component\Validator\Tests\Constraints\CollectionValidatorTest::testRequiredFieldMultipleConstraints()
File
- vendor/
symfony/ validator/ Tests/ Constraints/ CollectionValidatorTest.php, line 347
Class
Namespace
Symfony\Component\Validator\Tests\ConstraintsCode
public function testRequiredFieldMultipleConstraints() {
$array = array(
'foo' => 5,
);
$constraints = array(
new NotNull(),
new Range(array(
'min' => 4,
)),
);
$this
->expectValidateValueAt(0, '[foo]', $array['foo'], $constraints);
$data = $this
->prepareTestData($array);
$this->validator
->validate($data, new Collection(array(
'foo' => new Required($constraints),
)));
$this
->assertNoViolation();
}