public function IsbnValidatorTest::testInvalidIsbn13 in Plug 7
@dataProvider getInvalidIsbn13
File
- lib/
Symfony/ validator/ Symfony/ Component/ Validator/ Tests/ Constraints/ IsbnValidatorTest.php, line 201
Class
Namespace
Symfony\Component\Validator\Tests\ConstraintsCode
public function testInvalidIsbn13($isbn, $code) {
$constraint = new Isbn(array(
'type' => 'isbn13',
'isbn13Message' => 'myMessage',
));
$this->validator
->validate($isbn, $constraint);
$this
->buildViolation('myMessage')
->setParameter('{{ value }}', '"' . $isbn . '"')
->setCode($code)
->assertRaised();
}