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

providerForValidateKO() public method

    public function providerForValidateKO()
    {
        return array(array(-10 / 7, 'The value can not be lower than %size%.', array('%size%' => $this->getMinFloatValue())), array(0, 'The value can not be lower than %size%.', array('%size%' => $this->getMinFloatValue())), array(99 / 70, 'The value can not be lower than %size%.', array('%size%' => $this->getMinFloatValue())), array(111 / 70, 'The value can not be higher than %size%.', array('%size%' => $this->getMaxFloatValue())));
    }