You are here

public function CallbackValidatorTest::testClosureExplicitName in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/validator/Tests/Constraints/CallbackValidatorTest.php \Symfony\Component\Validator\Tests\Constraints\CallbackValidatorTest::testClosureExplicitName()

File

vendor/symfony/validator/Tests/Constraints/CallbackValidatorTest.php, line 133

Class

CallbackValidatorTest

Namespace

Symfony\Component\Validator\Tests\Constraints

Code

public function testClosureExplicitName() {
  $object = new CallbackValidatorTest_Object();
  $constraint = new Callback(array(
    'callback' => function ($object, ExecutionContextInterface $context) {
      $context
        ->addViolation('My message', array(
        '{{ value }}' => 'foobar',
      ));
      return false;
    },
  ));
  $this->validator
    ->validate($object, $constraint);
  $this
    ->buildViolation('My message')
    ->setParameter('{{ value }}', 'foobar')
    ->assertRaised();
}