Exemplo n.º 1
0
 public function testGetVideoCategory()
 {
     $this->entry->transferFromXML($this->entryText);
     $videoEntry = $this->entry;
     $this->assertEquals('Music', $videoEntry->getVideoCategory());
     $newEntry = new Zend_Gdata_YouTube_VideoEntry();
     $this->assertEquals(null, $newEntry->getVideoCategory());
 }