Exemplo n.º 1
0
 public function testEmptyVideoEntryToAndFromStringShouldMatch() {
     $entryXml = $this->entry->saveXML();
     $newVideoEntry = new Zend_Gdata_YouTube_VideoEntry();
     $newVideoEntry->transferFromXML($entryXml);
     $newVideoEntryXml = $newVideoEntry->saveXML();
     $this->assertTrue($entryXml == $newVideoEntryXml);
 }