public function testAddingGCMIdentifiers()
 {
     $msg = new AndroidMessage();
     $msg->addGCMIdentifier("foo");
     $msg->addGCMIdentifier("bar");
     $this->assertCount(2, $msg->getGCMIdentifiers());
 }