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

testToFieldValueDisabled() public method

    public function testToFieldValueDisabled()
    {
        $storageFieldValue = new StorageFieldValue();
        $storageFieldValue->dataInt = 1;
        $fieldValue = new FieldValue();
        $this->converter->toFieldValue($storageFieldValue, $fieldValue);
        self::assertSame(true, $fieldValue->data);
    }