Symfony\Component\Form\Tests\Extension\Validator\ValidatorTypeGuesserTest::testGuessMaxLengthForConstraintWithMinValue PHP Method

testGuessMaxLengthForConstraintWithMinValue() public method

    public function testGuessMaxLengthForConstraintWithMinValue()
    {
        $constraint = new Length(array('min' => '2'));

        $result = $this->guesser->guessMaxLengthForConstraint($constraint);
        $this->assertNull($result);
    }