/**
  * @covers WindowsAzure\Common\Internal\Http\HttpClient::getBody
  */
 public function testGetBody()
 {
     // Setup
     $channel = new HttpClient();
     $expected = 'new body';
     $channel->setBody($expected);
     // Test
     $actual = $channel->getBody();
     // Assert
     $this->assertEquals($expected, $actual);
 }