public function DateTimeValidatorTest::testValidDateTimes in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/validator/Tests/Constraints/DateTimeValidatorTest.php \Symfony\Component\Validator\Tests\Constraints\DateTimeValidatorTest::testValidDateTimes()
@dataProvider getValidDateTimes
File
- vendor/
symfony/ validator/ Tests/ Constraints/ DateTimeValidatorTest.php, line 62
Class
Namespace
Symfony\Component\Validator\Tests\ConstraintsCode
public function testValidDateTimes($dateTime) {
$this->validator
->validate($dateTime, new DateTime());
$this
->assertNoViolation();
}