public function CollectionValidatorTest::testThrowsExceptionIfNotTraversable in Plug 7
@expectedException \Symfony\Component\Validator\Exception\UnexpectedTypeException
File
- lib/
Symfony/ validator/ Symfony/ Component/ Validator/ Tests/ Constraints/ CollectionValidatorTest.php, line 63
Class
Namespace
Symfony\Component\Validator\Tests\ConstraintsCode
public function testThrowsExceptionIfNotTraversable() {
$this->validator
->validate('foobar', new Collection(array(
'fields' => array(
'foo' => new Range(array(
'min' => 4,
)),
),
)));
}