/**
  * @covers OpCacheGUI\OpCache\Configuration::__construct
  * @covers OpCacheGUI\OpCache\Configuration::getIniDirectives
  */
 public function testGetIniDirectives()
 {
     $formatter = $this->getMock('\\OpCacheGUI\\Format\\Byte');
     $formatter->method('format')->willReturn('1KB');
     $config = new Configuration($formatter, $this->configData);
     $this->configData['directives']['opcache.memory_consumption'] = '1KB';
     $this->assertSame($this->configData['directives'], $config->getIniDirectives());
 }