setLogoImageUrl() public method

Logo image url for the incentive.
public setLogoImageUrl ( string $logo_image_url )
$logo_image_url string
コード例 #1
0
ファイル: IncentiveTest.php プロジェクト: Roc4rdho/app
 /**
  * @expectedException \InvalidArgumentException
  * @expectedExceptionMessage LogoImageUrl is not a fully qualified URL
  */
 public function testUrlValidationForLogoImageUrl()
 {
     $obj = new Incentive();
     $obj->setLogoImageUrl(null);
 }