You are here

public function CallbackValidatorTest::testClosureNullObject in Zircon Profile 8.0

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

File

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

Class

CallbackValidatorTest

Namespace

Symfony\Component\Validator\Tests\Constraints

Code

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