public function LuhnValidatorTest::testInvalidNumbers in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/validator/Tests/Constraints/LuhnValidatorTest.php \Symfony\Component\Validator\Tests\Constraints\LuhnValidatorTest::testInvalidNumbers()
@dataProvider getInvalidNumbers
File
- vendor/
symfony/ validator/ Tests/ Constraints/ LuhnValidatorTest.php, line 81
Class
Namespace
Symfony\Component\Validator\Tests\ConstraintsCode
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();
}