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

providerForValidateConstraintsKO() public method

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