use Symfony\Component\Validator\Test\ConstraintValidatorTestCase;
class CompoundValidatorTest extends ConstraintValidatorTestCase
{ protected function createValidator(): CompoundValidator
{ return new CompoundValidator();
} public function testValidValue() { $this->validator->
validate('foo',
new DummyCompoundConstraint());
$this->
assertNoViolation();
} public function testValidateWithConstraints() { $value = 'foo';
$constraint =
new DummyCompoundConstraint();
$this->
expectValidateValue(0,
$value,
$constraint->constraints
);