You are here

public function CollectionValidatorTest::testRequiredFieldMultipleConstraints in Plug 7

File

lib/Symfony/validator/Symfony/Component/Validator/Tests/Constraints/CollectionValidatorTest.php, line 347

Class

CollectionValidatorTest

Namespace

Symfony\Component\Validator\Tests\Constraints

Code

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