You are here

public function LuhnValidatorTest::testInvalidNumbers in Plug 7

@dataProvider getInvalidNumbers

File

lib/Symfony/validator/Symfony/Component/Validator/Tests/Constraints/LuhnValidatorTest.php, line 81

Class

LuhnValidatorTest

Namespace

Symfony\Component\Validator\Tests\Constraints

Code

public function testInvalidNumbers($number, $code) {
  $constraint = new Luhn(array(
    'message' => 'myMessage',
  ));
  $this->validator
    ->validate($number, $constraint);
  $this
    ->buildViolation('myMessage')
    ->setParameter('{{ value }}', '"' . $number . '"')
    ->setCode($code)
    ->assertRaised();
}