public function testOwnsServiceDescription()
 {
     $client = new Mock\MockClient();
     $this->assertNull($client->getDescription());
     $description = $this->getMock('Guzzle\\Service\\Description\\ServiceDescription');
     $this->assertSame($client, $client->setDescription($description));
     $this->assertSame($description, $client->getDescription());
 }