setLogoUrl() public method

Full URL of an external image to use as the logo. Maximum length is 4000 characters.
public setLogoUrl ( string $logo_url )
$logo_url string
 /**
  * @expectedException \InvalidArgumentException
  * @expectedExceptionMessage LogoUrl is not a fully qualified URL
  */
 public function testUrlValidationForLogoUrl()
 {
     $obj = new TemplateData();
     $obj->setLogoUrl(null);
 }