You are here

public function RegexValidatorTest::testValidValues in Plug 7

@dataProvider getValidValues

File

lib/Symfony/validator/Symfony/Component/Validator/Tests/Constraints/RegexValidatorTest.php, line 55

Class

RegexValidatorTest

Namespace

Symfony\Component\Validator\Tests\Constraints

Code

public function testValidValues($value) {
  $constraint = new Regex(array(
    'pattern' => '/^[0-9]+$/',
  ));
  $this->validator
    ->validate($value, $constraint);
  $this
    ->assertNoViolation();
}