You are here

public function ExpressionValidatorTest::testFailingExpressionAtPropertyLevel in Zircon Profile 8.0

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

File

vendor/symfony/validator/Tests/Constraints/ExpressionValidatorTest.php, line 109

Class

ExpressionValidatorTest

Namespace

Symfony\Component\Validator\Tests\Constraints

Code

public function testFailingExpressionAtPropertyLevel() {
  $constraint = new Expression(array(
    'expression' => 'value == this.data',
    'message' => 'myMessage',
  ));
  $object = new Entity();
  $object->data = '1';
  $this
    ->setRoot($object);
  $this
    ->setPropertyPath('data');
  $this
    ->setProperty($object, 'data');
  $this->validator
    ->validate('2', $constraint);
  $this
    ->buildViolation('myMessage')
    ->setParameter('{{ value }}', '"2"')
    ->atPath('data')
    ->assertRaised();
}