Source

						public function testSendConfiguringConnection() {
		$http = new Service($this->_testConfig);
		$result = $http->send('get', 'some-path/stuff', array(), array('someKey' => 'someValue'));
		$config = $http->connection->config();
		$this->assertEqual('someValue', $config['someKey']);
	}