Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. ConstraintValidatorTestCase.php

function ConstraintValidatorTestCase::expectValidateValue

File

vendor/symfony/validator/Test/ConstraintValidatorTestCase.php, line 233

Class

ConstraintValidatorTestCase
A test case to ease testing Constraint Validators.

Namespace

Symfony\Component\Validator\Test

Code

protected function expectValidateValue(int $i, mixed $value, array $constraints = [], string|GroupSequence|array|null $group = null) {
    $contextualValidator = $this->context
        ->getValidator()
        ->inContext($this->context);
    $contextualValidator->expectValidation($i, null, $value, $group, function ($passedConstraints) use ($constraints) {
        if (!\is_array($passedConstraints)) {
            $passedConstraints = [
                $passedConstraints,
            ];
        }
        Assert::assertEquals($constraints, $passedConstraints);
    });
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal