public function testInitialize()
 {
     $config = array('username' => $this->username, 'password' => $this->password);
     $this->client = new Client();
     $this->client->initialize($config);
     $this->assertEquals($this->username, $this->client->getUsername());
     $this->assertEquals($this->password, $this->client->getPassword());
 }