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

providerForValidateConstraintsOK() public method

    public function providerForValidateConstraintsOK()
    {
        return array(array(array(), array('minIntegerValue' => 5), array('maxIntegerValue' => 2), array('minIntegerValue' => null, 'maxIntegerValue' => null), array('minIntegerValue' => -5, 'maxIntegerValue' => null), array('minIntegerValue' => null, 'maxIntegerValue' => 12), array('minIntegerValue' => 6, 'maxIntegerValue' => 8)));
    }