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

testToStorageValue() public method

Test converting Parts\Page to XML.
public testToStorageValue ( )
    public function testToStorageValue()
    {
        $storageFieldValue = new StorageFieldValue();
        $fieldValue = new FieldValue(array('data' => $this->pageReference));
        $this->converter->toStorageValue($fieldValue, $storageFieldValue);
        $this->assertXmlStringEqualsXmlString(self::PAGE_XML_REFERENCE, $storageFieldValue->dataText);
    }