You are here

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

File

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

Class

CollectionValidatorTest

Namespace

Symfony\Component\Validator\Tests\Constraints

Code

public function testRequiredFieldSingleConstraint() {
  $array = array(
    'foo' => 5,
  );
  $constraint = new Range(array(
    'min' => 4,
  ));
  $this
    ->expectValidateValueAt(0, '[foo]', $array['foo'], array(
    $constraint,
  ));
  $data = $this
    ->prepareTestData($array);
  $this->validator
    ->validate($data, new Collection(array(
    'foo' => new Required($constraint),
  )));
  $this
    ->assertNoViolation();
}