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