public function IssnValidatorTest::testValidIssn

@dataProvider getValidIssn

File

drupal/core/vendor/symfony/validator/Symfony/Component/Validator/Tests/Constraints/IssnValidatorTest.php, line 170

Class

IssnValidatorTest

Namespace

Symfony\Component\Validator\Tests\Constraints

Code

public function testValidIssn($issn) {
  $constraint = new Issn();
  $this->context
    ->expects($this
    ->never())
    ->method('addViolation');
  $this->validator
    ->validate($issn, $constraint);
}