public function testGetCompressionLibrary()
 {
     $expected = 'gzip';
     $this->deploymentConfig->expects($this->once())->method('get')->with(Config::PARAM_COMPRESSION_LIBRARY)->willReturn($expected);
     $this->assertEquals($this->config->getCompressionLibrary(), $expected);
 }