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

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

Test getting constraints schema.
    public function testGetConstraintsSchema()
    {
        $constraintsSchema = array('minFloatValue' => array('type' => 'float', 'default' => null), 'maxFloatValue' => array('type' => 'float', 'default' => null));
        $validator = new FloatValueValidator();
        $this->assertSame($constraintsSchema, $validator->getConstraintsSchema());
    }