namespace Symfony\Component\Validator\Tests\Constraints;
use Symfony\Component\Validator\Constraints\Regex;
use Symfony\Component\Validator\Constraints\RegexValidator;
use Symfony\Component\Validator\Exception\UnexpectedValueException;
use Symfony\Component\Validator\Test\ConstraintValidatorTestCase;
class RegexValidatorTest extends ConstraintValidatorTestCase
{ protected function createValidator(): RegexValidator
{ return new RegexValidator();
} public function testNullIsValid() { $this->validator->
validate(null,
new Regex(['pattern' => '/^[0-9]+$/'
]));
$this->
assertNoViolation();
} public function testEmptyStringIsValid() {