public function RegexValidatorTest::testValidValues in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/validator/Tests/Constraints/RegexValidatorTest.php \Symfony\Component\Validator\Tests\Constraints\RegexValidatorTest::testValidValues()
@dataProvider getValidValues
File
- vendor/
symfony/ validator/ Tests/ Constraints/ RegexValidatorTest.php, line 55
Class
Namespace
Symfony\Component\Validator\Tests\ConstraintsCode
public function testValidValues($value) {
$constraint = new Regex(array(
'pattern' => '/^[0-9]+$/',
));
$this->validator
->validate($value, $constraint);
$this
->assertNoViolation();
}