Beispiel #1
0
 public function testEmptyVolumeEntryToAndFromStringShouldMatch() {
     $entryXml = $this->entry->saveXML();
     $newVolumeEntry = new Books\VolumeEntry();
     $newVolumeEntry->transferFromXML($entryXml);
     $newVolumeEntryXml = $newVolumeEntry->saveXML();
     $this->assertEquals($entryXml, $newVolumeEntryXml);
 }