/**
  * @covers Guzzle\Service\Client::getCommandFactory
  * @covers Guzzle\Service\Client::setCommandFactory
  */
 public function testOwnsCommandFactory()
 {
     $client = new Mock\MockClient();
     $this->assertInstanceOf('Guzzle\\Service\\Command\\Factory\\CompositeFactory', $client->getCommandFactory());
     $this->assertSame($client->getCommandFactory(), $client->getCommandFactory());
     $mock = $this->getMock('Guzzle\\Service\\Command\\Factory\\CompositeFactory');
     $client->setCommandFactory($mock);
     $this->assertSame($mock, $client->getCommandFactory());
 }