Used by the CachePanel to wrap and track metrics related to caching.
Inheritance: extends Cake\Cache\CacheEngine
 /**
  * Test that the normal errors bubble up still.
  *
  * @expectedException BadMethodCallException
  * @return void
  */
 public function testInitErrorOnInvalidConfig()
 {
     $engine = new DebugEngine(['className' => 'Derpy', 'path' => TMP]);
     $engine->init();
 }