INFRA-132 - Put "else" and "catch" on new line
[civicrm-core.git] / tests / phpunit / CiviTest / bootstrap.php
CommitLineData
781cfdd0
TO
1<?php
2// ADAPTED FROM tools/scripts/phpunit
3
4$GLOBALS['base_dir'] = dirname(dirname(dirname(__DIR__)));
5$tests_dir = $GLOBALS['base_dir'] . DIRECTORY_SEPARATOR . 'tests' . DIRECTORY_SEPARATOR . 'phpunit';
6$civi_pkgs_dir = $GLOBALS['base_dir'] . DIRECTORY_SEPARATOR . 'packages';
7ini_set('safe_mode', 0);
8ini_set('include_path',
9 "{$GLOBALS['base_dir']}" . PATH_SEPARATOR .
10 "$tests_dir" . PATH_SEPARATOR .
11 "$civi_pkgs_dir" . PATH_SEPARATOR
12 . ini_get( 'include_path') );
13
14# Relying on system timezone setting produces a warning,
15# doing the following prevents the warning message
16if ( file_exists( '/etc/timezone' ) ) {
6c6e6187
TO
17 $timezone = trim( file_get_contents( '/etc/timezone' ) );
18 if ( ini_set('date.timezone', $timezone ) === FALSE ) {
19 echo "ini_set( 'date.timezone', '$timezone' ) failed\n";
20 }
781cfdd0
TO
21}
22
23# Crank up the memory
24ini_set('memory_limit', '2G');
25
ac0b2c9c 26require_once $GLOBALS['base_dir'] . '/vendor/autoload.php';
781cfdd0
TO
27
28/*
29require $GLOBALS['base_dir'] . DIRECTORY_SEPARATOR .
30 'packages' . DIRECTORY_SEPARATOR .
31 'PHPUnit' . DIRECTORY_SEPARATOR .
32 'Autoload.php';
ef10e0b5 33*/