mirror of
https://github.com/quentin-g-dev/afup.git
synced 2026-03-25 17:52:13 +01:00
13 lines
325 B
PHP
13 lines
325 B
PHP
<?php
|
|
/*
|
|
* Définition des paramètres pour l'exécution des tests
|
|
*/
|
|
if (file_exists(dirname(__FILE__) . '/config.php')) {
|
|
require_once dirname(__FILE__) . '/config.php';
|
|
} else {
|
|
define('TEST_HOST', 'localhost');
|
|
define('TEST_DB', 'afup_test');
|
|
define('TEST_USER', 'root');
|
|
define('TEST_PWD', '');
|
|
}
|