/**
  * @test
  */
 public function testGetFiles()
 {
     $this->markup->setBundlerDirectory('./.bundler');
     $this->markup->setHost('/');
     $this->markup->setDevelopment(false);
     $this->markup->setMinified(true);
     $this->markup->setVersionized(true);
     $result = $this->markup->getFiles('stylesheetFoo');
     $expected = ['/site/www/builds/stylesheetFoo.min.css?v=' . $this->configCache['stylesheetFoo']['md5']];
     $this->assertEquals($expected, $result);
 }