eZ\Publish\Core\FieldType\Tests\StringLengthValidatorTest::providerForValidateKO PHP Method

providerForValidateKO() public method

    public function providerForValidateKO()
    {
        return array(array('', 'The string can not be shorter than %size% character.', 'The string can not be shorter than %size% characters.', array('%size%' => $this->getMinStringLength())), array('Hi!', 'The string can not be shorter than %size% character.', 'The string can not be shorter than %size% characters.', array('%size%' => $this->getMinStringLength())), array('0123456789!', 'The string can not exceed %size% character.', 'The string can not exceed %size% characters.', array('%size%' => $this->getMaxStringLength())));
    }