public function DateValidatorTest::testValidDates

@dataProvider getValidDates

File

drupal/core/vendor/symfony/validator/Symfony/Component/Validator/Tests/Constraints/DateValidatorTest.php, line 70

Class

DateValidatorTest

Namespace

Symfony\Component\Validator\Tests\Constraints

Code

public function testValidDates($date) {
  $this->context
    ->expects($this
    ->never())
    ->method('addViolation');
  $this->validator
    ->validate($date, new Date());
}