Inheritance: implements eZ\Publish\Core\Persistence\Legacy\Content\FieldValue\Converter
 /**
  * @covers \eZ\Publish\Core\Persistence\Legacy\Content\FieldValue\Converter\RichTextConverter::toFieldValue
  */
 public function testToFieldValue()
 {
     $storageFieldValue = new StorageFieldValue();
     $storageFieldValue->dataText = $this->docbookString;
     $fieldValue = new FieldValue();
     $this->converter->toFieldValue($storageFieldValue, $fieldValue);
     self::assertSame($this->docbookString, $fieldValue->data);
 }