mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2025-02-05 06:29:44 +00:00
1e40dd5683
It now uses a database call instead of inputting values via a form. This is based on how it's done in the API tests.
13 lines
469 B
PHP
13 lines
469 B
PHP
<?php
|
|
// Here you can initialize variables that will be available to your tests
|
|
|
|
/* 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();
|