bootstrap.php 444 Bytes
<?php
/**
 * Test runner bootstrap.
 *
 * Add additional configuration/setup your application needs when running
 * unit tests in this file.
 */

// 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);


require dirname(__DIR__) . '/vendor/autoload.php';

require dirname(__DIR__) . '/config/bootstrap.php';

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