public function CollectionValidatorTest::testExtraFieldsAllowed 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::testExtraFieldsAllowed()
File
- vendor/
symfony/ validator/ Tests/ Constraints/ CollectionValidatorTest.php, line 173
Class
Namespace
Symfony\Component\Validator\Tests\ConstraintsCode
public function testExtraFieldsAllowed() {
$data = $this
->prepareTestData(array(
'foo' => 5,
'bar' => 6,
));
$constraint = new Range(array(
'min' => 4,
));
$this
->expectValidateValueAt(0, '[foo]', $data['foo'], array(
$constraint,
));
$this->validator
->validate($data, new Collection(array(
'fields' => array(
'foo' => $constraint,
),
'allowExtraFields' => true,
)));
$this
->assertNoViolation();
}