/**
  * @covers WindowsAzure\Common\Internal\Http\HttpClient::getMethod
  */
 public function testGetMethod()
 {
     // Setup
     $channel = new HttpClient();
     $httpMethod = 'GET';
     $channel->setMethod($httpMethod);
     // Test
     $channelHttpMethod = $channel->getMethod();
     // Assert
     $this->assertEquals($httpMethod, $channelHttpMethod);
 }