/**
  * @covers MicrosoftAzure\Storage\Common\Internal\ConnectionStringSource::environmentSource
  */
 public function testEnvironmentSource()
 {
     // Setup
     $key = 'key';
     $value = 'value';
     putenv("{$key}={$value}");
     // Test
     $actual = ConnectionStringSource::environmentSource($key);
     // Assert
     $this->assertEquals($value, $actual);
     // Clean
     putenv($key);
 }