Blame view

tests/bootstrap.php 444 Bytes
6c4edfa3   Alexandre   First Commit LabI...
1
2
3
4
5
6
7
<?php
/**
 * Test runner bootstrap.
 *
 * Add additional configuration/setup your application needs when running
 * unit tests in this file.
 */
0a204e59   Etienne Pallier   Tests : passent à...
8
9
10
11
12
13

// EP added 20211130 : pour savoir si je suis en mode test ou pas
// Voir comment je teste cette variable dans config/bootstrap.php
define('_IN_TEST_MODE', true);


07e4c3fb   Etienne Pallier   v4.108.0-3.7.9 - ...
14
15
require dirname(__DIR__) . '/vendor/autoload.php';

6c4edfa3   Alexandre   First Commit LabI...
16
require dirname(__DIR__) . '/config/bootstrap.php';
07e4c3fb   Etienne Pallier   v4.108.0-3.7.9 - ...
17
18

$_SERVER['PHP_SELF'] = '/';