You are here

public function ChoiceValidatorTest::testValidChoiceCallbackContextMethod in Zircon Profile 8.0

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

File

vendor/symfony/validator/Tests/Constraints/ChoiceValidatorTest.php, line 114

Class

ChoiceValidatorTest

Namespace

Symfony\Component\Validator\Tests\Constraints

Code

public function testValidChoiceCallbackContextMethod() {

  // search $this for "staticCallback"
  $this
    ->setObject($this);
  $constraint = new Choice(array(
    'callback' => 'staticCallback',
  ));
  $this->validator
    ->validate('bar', $constraint);
  $this
    ->assertNoViolation();
}