eZ\Publish\Core\FieldType\Tests\FloatValueValidatorTest::providerForValidateConstraintsKO PHP Метод

providerForValidateConstraintsKO() публичный Метод

    public function providerForValidateConstraintsKO()
    {
        return array(array(array('minFloatValue' => true), array("Validator parameter '%parameter%' value must be of numeric type"), array(array('%parameter%' => 'minFloatValue'))), array(array('minFloatValue' => 'five thousand bytes'), array("Validator parameter '%parameter%' value must be of numeric type"), array(array('%parameter%' => 'minFloatValue'))), array(array('minFloatValue' => 'five thousand bytes', 'maxFloatValue' => 1234), array("Validator parameter '%parameter%' value must be of numeric type"), array(array('%parameter%' => 'minFloatValue'))), array(array('maxFloatValue' => new \DateTime(), 'minFloatValue' => 1234), array("Validator parameter '%parameter%' value must be of numeric type"), array(array('%parameter%' => 'maxFloatValue'))), array(array('minFloatValue' => true, 'maxFloatValue' => 1234), array("Validator parameter '%parameter%' value must be of numeric type"), array(array('%parameter%' => 'minFloatValue'))), array(array('minFloatValue' => 'five thousand bytes', 'maxFloatValue' => 'ten billion bytes'), array("Validator parameter '%parameter%' value must be of numeric type", "Validator parameter '%parameter%' value must be of numeric type"), array(array('%parameter%' => 'minFloatValue'), array('%parameter%' => 'maxFloatValue'))), array(array('brljix' => 12345), array("Validator parameter '%parameter%' is unknown"), array(array('%parameter%' => 'brljix'))), array(array('minFloatValue' => 12345, 'brljix' => 12345), array("Validator parameter '%parameter%' is unknown"), array(array('%parameter%' => 'brljix'))));
    }