You are here

public function IsbnValidatorTest::testInvalidIsbnAnyIsbn10 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::testInvalidIsbnAnyIsbn10()

@dataProvider getInvalidIsbn10

File

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

Class

IsbnValidatorTest

Namespace

Symfony\Component\Validator\Tests\Constraints

Code

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

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