You are here

public function DateValidatorTest::testEmptyStringIsValid in Zircon Profile 8.0

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

File

vendor/symfony/validator/Tests/Constraints/DateValidatorTest.php, line 37

Class

DateValidatorTest

Namespace

Symfony\Component\Validator\Tests\Constraints

Code

public function testEmptyStringIsValid() {
  $this->validator
    ->validate('', new Date());
  $this
    ->assertNoViolation();
}