You are here

public function IsbnValidatorTest::testInvalidIsbn13 in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/validator/Tests/Constraints/IsbnValidatorTest.php \Symfony\Component\Validator\Tests\Constraints\IsbnValidatorTest::testInvalidIsbn13()

@dataProvider getInvalidIsbn13

File

vendor/symfony/validator/Tests/Constraints/IsbnValidatorTest.php, line 201

Class

IsbnValidatorTest

Namespace

Symfony\Component\Validator\Tests\Constraints

Code

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();
}