/**
  * @covers Guzzle\Service\Command\AbstractCommand::__call
  */
 public function testMissingMethodCallsAllowedWhenEnabled()
 {
     $command = new MockCommand(array('command.magic_method_call' => true), $this->getApiCommand());
     $command->setTest('foo');
     $this->assertEquals('foo', $command->get('test'));
 }