You are here

public function CollectionValidatorTest::testOptionalFieldPresent 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::testOptionalFieldPresent()

File

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

Class

CollectionValidatorTest

Namespace

Symfony\Component\Validator\Tests\Constraints

Code

public function testOptionalFieldPresent() {
  $data = $this
    ->prepareTestData(array(
    'foo' => null,
  ));
  $this->validator
    ->validate($data, new Collection(array(
    'foo' => new Optional(),
  )));
  $this
    ->assertNoViolation();
}