/**
  *
  */
 public function testDumpGalleryLoc()
 {
     $this->videoEntity->setGalleryLoc(array('url' => 'http://test.com/'));
     $this->assertRegExp('/\\<video\\:gallery\\_loc\\>http\\:\\/\\/test\\.com\\/\\<\\/video\\:gallery\\_loc\\>/', $this->videoEntity->getXml());
     $this->videoEntity->setGalleryLoc(array('url' => 'http://test.com/', 'title' => 'test'));
     $this->assertRegExp('/\\<video\\:gallery\\_loc\\ title\\=\\"test\\"\\>http\\:\\/\\/test\\.com\\/\\<\\/video\\:gallery\\_loc\\>/', $this->videoEntity->getXml());
 }