public function testGetAndSetApplicationKey()
 {
     $this->assertEquals(self::APP_KEY, $this->client->getApplicationKey());
     $this->client->setApplicationKey('test_app_key');
     $this->assertEquals('test_app_key', $this->client->getApplicationKey());
 }