/**
  * @covers MaglLegacyApplication\Module::getControllerConfig
  */
 public function testGetControllerFromServiceManager()
 {
     //$this->markTestSkipped();
     $sm = Bootstrap::getServiceManager();
     $controller = $sm->get('ControllerLoader')->get('MaglLegacyApplication\\Controller\\Legacy');
     $this->assertInstanceOf('\\MaglLegacyApplication\\Controller\\LegacyController', $controller);
 }
 public function setUp()
 {
     $this->instance = Bootstrap::getServiceManager()->get('MaglControllerService');
 }
 public function setUp()
 {
     $sm = \MaglLegacyApplicationTest\Bootstrap::getServiceManager();
     $this->setApplicationConfig($sm->get('ApplicationConfig'));
     parent::setUp();
 }