Neos\Flow\Tests\Unit\Validation\Validator\StringLengthValidatorTest::stringLengthValidatorReturnsNoErrorsfTheStringLengthIsEqualToMaxLength PHP Method

stringLengthValidatorReturnsNoErrorsfTheStringLengthIsEqualToMaxLength() public method

    public function stringLengthValidatorReturnsNoErrorsfTheStringLengthIsEqualToMaxLength()
    {
        $this->validatorOptions(['minimum' => 1, 'maximum' => 10]);
        $this->assertFalse($this->validator->validate('1234567890')->hasErrors());
    }