mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2024-11-21 23:47:57 +00:00
25 lines
986 B
PHP
25 lines
986 B
PHP
<?php
|
|
// Here you can initialize variables that will be available to your test
|
|
//echo "CWD:" . getcwd() . "\n";
|
|
chdir(__DIR__.'/../../');
|
|
if (!defined('sugarEntry')) {
|
|
define('sugarEntry', true);
|
|
define('SUITE_PHPUNIT_RUNNER', true);
|
|
}
|
|
/* bootstrap composer's autoloader */
|
|
require_once __DIR__.'/../../vendor/autoload.php';
|
|
global $sugar_config, $db;
|
|
|
|
require_once __DIR__ .'/../../include/database/DBManagerFactory.php';
|
|
|
|
require_once __DIR__ .'/../../include/utils.php';
|
|
require_once __DIR__ .'/../../include/modules.php';
|
|
require_once __DIR__ .'/../../include/entryPoint.php';
|
|
$db = DBManagerFactory::getInstance();
|
|
//Oddly entry point loads app_strings but not app_list_strings, manually do this here.
|
|
$GLOBALS['current_language'] = 'en_us';
|
|
$GLOBALS['app_list_strings'] = return_app_list_strings_language($GLOBALS['current_language']);
|
|
|
|
/* VERY BAD :-( - but for now at least tests are running */
|
|
$GLOBALS['sugar_config']['resource_management']['default_limit'] = 999999;
|