public function RangeValidatorTest::getTenthToTwentiethMarch2014 in Plug 7
File
- lib/
Symfony/ validator/ Symfony/ Component/ Validator/ Tests/ Constraints/ RangeValidatorTest.php, line 185
Class
Namespace
Symfony\Component\Validator\Tests\ConstraintsCode
public function getTenthToTwentiethMarch2014() {
// The provider runs before setUp(), so we need to manually fix
// the default timezone
$this
->setDefaultTimezone('UTC');
$tests = array(
array(
new \DateTime('March 10, 2014'),
),
array(
new \DateTime('March 15, 2014'),
),
array(
new \DateTime('March 20, 2014'),
),
);
if (version_compare(PHP_VERSION, '5.5.0-dev', '>=')) {
$tests[] = array(
new \DateTimeImmutable('March 10, 2014'),
);
$tests[] = array(
new \DateTimeImmutable('March 15, 2014'),
);
$tests[] = array(
new \DateTimeImmutable('March 20, 2014'),
);
}
$this
->restoreDefaultTimezone();
return $tests;
}