You are here

public function IsbnValidatorTest::testInvalidIsbnAnyIsbn13 in Plug 7

@dataProvider getInvalidIsbn13

File

lib/Symfony/validator/Symfony/Component/Validator/Tests/Constraints/IsbnValidatorTest.php, line 253

Class

IsbnValidatorTest

Namespace

Symfony\Component\Validator\Tests\Constraints

Code

public function testInvalidIsbnAnyIsbn13($isbn, $code) {
  $constraint = new Isbn(array(
    'bothIsbnMessage' => 'myMessage',
  ));
  $this->validator
    ->validate($isbn, $constraint);

  // Too short for an ISBN-13, but not short enough for an ISBN-10
  if (Isbn::TOO_SHORT_ERROR === $code) {
    $code = Isbn::TYPE_NOT_RECOGNIZED_ERROR;
  }
  $this
    ->buildViolation('myMessage')
    ->setParameter('{{ value }}', '"' . $isbn . '"')
    ->setCode($code)
    ->assertRaised();
}