public function ImageValidatorTest::testInvalidMaxHeight in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/validator/Tests/Constraints/ImageValidatorTest.php \Symfony\Component\Validator\Tests\Constraints\ImageValidatorTest::testInvalidMaxHeight()
@expectedException \Symfony\Component\Validator\Exception\ConstraintDefinitionException
File
- vendor/
symfony/ validator/ Tests/ Constraints/ ImageValidatorTest.php, line 209
Class
- ImageValidatorTest
- @requires extension fileinfo
Namespace
Symfony\Component\Validator\Tests\ConstraintsCode
public function testInvalidMaxHeight() {
$constraint = new Image(array(
'maxHeight' => '1abc',
));
$this->validator
->validate($this->image, $constraint);
}