You are here

public function LengthValidatorTest::testValidValuesMin in Zircon Profile 8

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

@dataProvider getFiveOrMoreCharacters

File

vendor/symfony/validator/Tests/Constraints/LengthValidatorTest.php, line 107

Class

LengthValidatorTest

Namespace

Symfony\Component\Validator\Tests\Constraints

Code

public function testValidValuesMin($value) {
  $constraint = new Length(array(
    'min' => 5,
  ));
  $this->validator
    ->validate($value, $constraint);
  $this
    ->assertNoViolation();
}