コード例 #1
0
 /**
  * @group notification
  */
 public function testPlatformMessage()
 {
     $endpoint = new AndroidEndpoint();
     $this->assertEquals($endpoint->getPlatformMessage('test_message', 'test_type', null), '{"GCM":"{\\"data\\":{\\"message\\":\\"test_message\\",\\"type\\":\\"test_type\\",\\"entity\\":\\"null\\"}}"}');
 }
 public function getPlatformMessage($message, $type, $entityData)
 {
     $this->__load();
     return parent::getPlatformMessage($message, $type, $entityData);
 }