You are here

public function RangeValidatorTest::testValidDatesMin in Plug 7

@dataProvider getTenthToTwentiethMarch2014

File

lib/Symfony/validator/Symfony/Component/Validator/Tests/Constraints/RangeValidatorTest.php, line 253

Class

RangeValidatorTest

Namespace

Symfony\Component\Validator\Tests\Constraints

Code

public function testValidDatesMin($value) {
  $constraint = new Range(array(
    'min' => 'March 10, 2014',
  ));
  $this->validator
    ->validate($value, $constraint);
  $this
    ->assertNoViolation();
}