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

providerForValidateKO() public method

    public function providerForValidateKO()
    {
        return array(array(-12, 'The value can not be lower than %size%.', array('%size%' => $this->getMinIntegerValue())), array(0, 'The value can not be lower than %size%.', array('%size%' => $this->getMinIntegerValue())), array(9, 'The value can not be lower than %size%.', array('%size%' => $this->getMinIntegerValue())), array(16, 'The value can not be higher than %size%.', array('%size%' => $this->getMaxIntegerValue())));
    }