/**
  * test enable ExtCoreDebug
  */
 public function testEnableExtCoreDebug()
 {
     $expectedRegExp = '#<script src="contrib/extjs/ext-core-debug\\.(js|\\d+\\.js|js\\?\\d+)" type="text/javascript"></script>#';
     $this->fixture->loadExtCore();
     $this->fixture->enableExtCoreDebug();
     $out = $this->fixture->render();
     $this->assertRegExp($expectedRegExp, $out);
 }