namespace Symfony\Component\Validator\Tests\Constraints;
use Symfony\Component\Validator\Constraints\Date;
use Symfony\Component\Validator\Constraints\DateValidator;
use Symfony\Component\Validator\Exception\UnexpectedValueException;
use Symfony\Component\Validator\Test\ConstraintValidatorTestCase;
class DateValidatorTest extends ConstraintValidatorTestCase
{ protected function createValidator(): DateValidator
{ return new DateValidator();
} public function testNullIsValid() { $this->validator->
validate(null,
new Date());
$this->
assertNoViolation();
} public function testEmptyStringIsValid() {