Version 1
[yaffs-website] / vendor / caxy / php-htmldiff / tests / Caxy / Tests / TestInit.php
1 <?php
2 /*
3  * This file bootstraps the test environment.
4  */
5 namespace Caxy\Tests;
6
7 error_reporting(E_ALL | E_STRICT);
8 date_default_timezone_set('UTC');
9
10 if (!file_exists(__DIR__ . '/../../../vendor/autoload.php')) {
11     throw new \Exception('Can\'t find autoload.php. Did you install dependencies via composer?');
12 }
13
14 require __DIR__ . '/../../../vendor/autoload.php';