We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f68179b commit f2763c3Copy full SHA for f2763c3
src/test/php/Gomoob/Pushwoosh/Model/Notification/NotificationTest.php
@@ -541,6 +541,7 @@ public function testJsonSerialize()
541
->setGcmTtl(3600)
542
->setIcon('icon')
543
->setTitle('Title')
544
+ ->setImage('Image')
545
)
546
->setIOS(
547
IOS::create()
@@ -666,6 +667,7 @@ public function testJsonSerialize()
666
667
$this->assertSame(3600, $array['chrome_gcm_ttl']);
668
$this->assertSame('icon', $array['chrome_icon']);
669
$this->assertSame('Title', $array['chrome_title']);
670
+ $this->assertSame('Image', $array['chrome_image']);
671
672
// Test IOS parameters
673
$this->assertSame(1, $array['apns_trim_content']);
0 commit comments