Timothy J. Warren
4a51c6419f
Some checks failed
timw4mail/HummingBirdAnimeClient/pipeline/head There was a failure building this commit
46 lines
1.5 KiB
PHP
46 lines
1.5 KiB
PHP
<?php declare(strict_types=1);
|
|
/**
|
|
* Global setup for unit tests
|
|
*/
|
|
|
|
// Work around the silly timezone error
|
|
$timezone = ini_get('date.timezone');
|
|
if ($timezone === '' || $timezone === FALSE)
|
|
{
|
|
ini_set('date.timezone', 'GMT');
|
|
}
|
|
|
|
define('AC_TEST_ROOT_DIR', dirname(__DIR__) . '/');
|
|
define('SRC_DIR', AC_TEST_ROOT_DIR . 'src/');
|
|
define('TEST_DIR', __DIR__ . '/');
|
|
|
|
// -----------------------------------------------------------------------------
|
|
// Autoloading
|
|
// -----------------------------------------------------------------------------
|
|
|
|
require_once TEST_DIR . 'AnimeClient/AnimeClientTestCase.php';
|
|
require_once TEST_DIR . '/Ion/IonTestCase.php';
|
|
require_once AC_TEST_ROOT_DIR . 'vendor/autoload.php';
|
|
|
|
// -----------------------------------------------------------------------------
|
|
// Ini Settings
|
|
// -----------------------------------------------------------------------------
|
|
ini_set('session.use_cookies', '0');
|
|
ini_set('session.use_only_cookies', '0');
|
|
ini_set('session.use_trans_sid', '1');
|
|
// Start session here to suppress error about headers not sent
|
|
session_start();
|
|
|
|
// -----------------------------------------------------------------------------
|
|
// Load base test case and mocks
|
|
// -----------------------------------------------------------------------------
|
|
|
|
// Pre-define some superglobals
|
|
$_SESSION = [];
|
|
$_COOKIE = [];
|
|
|
|
// Request base test case and mocks
|
|
require_once TEST_DIR . 'AnimeClient/mocks.php';
|
|
require_once TEST_DIR . 'Ion/mocks.php';
|
|
|
|
// End of bootstrap.php
|