Fixed and continued:
[core.git] / application / tests / init.php
index 00cf2f4d2366174b7cefbaada2aa282de33edb1d..188d06af79cc02df49423fb1f30178e89bda9397 100644 (file)
@@ -1,6 +1,7 @@
 <?php
 // Import framework stuff
 use CoreFramework\Configuration\FrameworkConfiguration;
+use CoreFramework\Helper\Application\ApplicationHelper;
 use CoreFramework\Loader\ClassLoader;
 
 /**
@@ -31,6 +32,9 @@ ClassLoader::scanApplicationClasses();
 // Get config instance
 $cfg = FrameworkConfiguration::getSelfInstance();
 
+// Initialize output system
+ApplicationHelper::createDebugInstance('ApplicationHelper');
+
 // This application needs a database connection then we have to simply include
 // the inc/database.php script
 require($cfg->getConfigEntry('base_path') . 'inc/database.php');