You are here

public function LengthValidatorTest::testConstraintGetDefaultOption 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::testConstraintGetDefaultOption()

File

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

Class

LengthValidatorTest

Namespace

Symfony\Component\Validator\Tests\Constraints

Code

public function testConstraintGetDefaultOption() {
  $constraint = new Length(5);
  $this
    ->assertEquals(5, $constraint->min);
  $this
    ->assertEquals(5, $constraint->max);
}