eZ\Publish\Core\Persistence\Legacy\Tests\Content\FieldValue\Converter\RatingTest::testToStorageValue PHP Method

testToStorageValue() public method

public testToStorageValue ( )
    public function testToStorageValue()
    {
        $value = new FieldValue();
        $value->data = false;
        $value->sortKey = false;
        $storageFieldValue = new StorageFieldValue();
        $this->converter->toStorageValue($value, $storageFieldValue);
        self::assertSame(null, $storageFieldValue->dataInt);
    }