<?php
/**
 * Proxy to index.php, but will use the Test DB
 * Used by tests/PHPUnit/Integration/ImportLogsTest.php and tests/PHPUnit/Integration/UITest.php
 */

require realpath(dirname(__FILE__)) . "/includes.php";

Piwik_TestingEnvironment::addHooks();

if (\Piwik\DbHelper::isInstalled()) {
    \Piwik\ViewDataTable\Manager::clearAllViewDataTableParameters();
} else {
    // Not installed yet, display backtrace when error
    define('PIWIK_PRINT_ERROR_BACKTRACE', true);
}

\Piwik\Profiler::setupProfilerXHProf();

include PIWIK_INCLUDE_PATH . '/index.php';