public function IssnValidatorTest::testEmptyStringIsValid in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/validator/Tests/Constraints/IssnValidatorTest.php \Symfony\Component\Validator\Tests\Constraints\IssnValidatorTest::testEmptyStringIsValid()
File
- vendor/
symfony/ validator/ Tests/ Constraints/ IssnValidatorTest.php, line 105
Class
Namespace
Symfony\Component\Validator\Tests\ConstraintsCode
public function testEmptyStringIsValid() {
$constraint = new Issn();
$this->validator
->validate('', $constraint);
$this
->assertNoViolation();
}