You are here

public function ImageValidatorTest::testInvalidMaxRatio 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::testInvalidMaxRatio()

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

File

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

Class

ImageValidatorTest
@requires extension fileinfo

Namespace

Symfony\Component\Validator\Tests\Constraints

Code

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