You are here

public function RegexValidatorTest::testInvalidValues in Plug 7

@dataProvider getInvalidValues

File

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

Class

RegexValidatorTest

Namespace

Symfony\Component\Validator\Tests\Constraints

Code

public function testInvalidValues($value) {
  $constraint = new Regex(array(
    'pattern' => '/^[0-9]+$/',
    'message' => 'myMessage',
  ));
  $this->validator
    ->validate($value, $constraint);
  $this
    ->buildViolation('myMessage')
    ->setParameter('{{ value }}', '"' . $value . '"')
    ->assertRaised();
}