You are here

public function CollectionValidatorTest::testNullNotConsideredExtraField in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/validator/Tests/Constraints/CollectionValidatorTest.php \Symfony\Component\Validator\Tests\Constraints\CollectionValidatorTest::testNullNotConsideredExtraField()

File

vendor/symfony/validator/Tests/Constraints/CollectionValidatorTest.php, line 154

Class

CollectionValidatorTest

Namespace

Symfony\Component\Validator\Tests\Constraints

Code

public function testNullNotConsideredExtraField() {
  $data = $this
    ->prepareTestData(array(
    'foo' => null,
  ));
  $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,
    ),
  )));
  $this
    ->assertNoViolation();
}