You are here

public function ImageValidatorTest::testInvalidMinHeight in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/validator/Tests/Constraints/ImageValidatorTest.php \Symfony\Component\Validator\Tests\Constraints\ImageValidatorTest::testInvalidMinHeight()

@expectedException \Symfony\Component\Validator\Exception\ConstraintDefinitionException

File

vendor/symfony/validator/Tests/Constraints/ImageValidatorTest.php, line 197

Class

ImageValidatorTest
@requires extension fileinfo

Namespace

Symfony\Component\Validator\Tests\Constraints

Code

public function testInvalidMinHeight() {
  $constraint = new Image(array(
    'minHeight' => '1abc',
  ));
  $this->validator
    ->validate($this->image, $constraint);
}