Exemplo n.º 1
0
 public function testGetVideoGeoLocation()
 {
     $this->entry->transferFromXML($this->entryText);
     $videoEntry = $this->entry;
     $geoLocation = $videoEntry->getVideoGeoLocation();
     $this->assertEquals('37.398529052734375', $geoLocation['latitude']);
     $this->assertEquals('-122.0635986328125', $geoLocation['longitude']);
     $newEntry = new Zend_Gdata_YouTube_VideoEntry();
     $this->assertEquals(null, $newEntry->getVideoGeoLocation());
 }