Example #1
0
 function test_multiple()
 {
     $gntp = new GNTP($this->io);
     $register = new RegisterRequest("gntp-test-multiple");
     $register->addNotification("notifytype1", array("icon_url" => "http://jigokuno.img.jugem.jp/20100730_1892085.gif"));
     $register->addNotification("notifytype2", array("icon_file" => __DIR__ . '/resources/c.png'));
     $notify = new NotificationRequest("gntp-test-multiple", "notifytype1", "title");
     $result = $gntp->notifyOrRegister($notify, $register);
     $this->assertEquals("-OK", $result->getStatus());
 }