You are here

public function IssnValidatorTest::testRequireHyphenIssns in Zircon Profile 8

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

@dataProvider getValidNonHyphenatedIssn

File

vendor/symfony/validator/Tests/Constraints/IssnValidatorTest.php, line 144

Class

IssnValidatorTest

Namespace

Symfony\Component\Validator\Tests\Constraints

Code

public function testRequireHyphenIssns($issn) {
  $constraint = new Issn(array(
    'requireHyphen' => true,
    'message' => 'myMessage',
  ));
  $this->validator
    ->validate($issn, $constraint);
  $this
    ->buildViolation('myMessage')
    ->setParameter('{{ value }}', '"' . $issn . '"')
    ->setCode(Issn::MISSING_HYPHEN_ERROR)
    ->assertRaised();
}