You are here

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

@expectedException \Symfony\Component\Validator\Exception\UnexpectedTypeException

File

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

Class

CollectionValidatorTest

Namespace

Symfony\Component\Validator\Tests\Constraints

Code

public function testThrowsExceptionIfNotTraversable() {
  $this->validator
    ->validate('foobar', new Collection(array(
    'fields' => array(
      'foo' => new Range(array(
        'min' => 4,
      )),
    ),
  )));
}