/Tests/bootstrap.php
PHP | 17 lines | 6 code | 3 blank | 8 comment | 1 complexity | 5cc8ba3818d468f564c985a444de17cb MD5 | raw file
1<?php 2 3/* 4 * This file is part of the FOSFacebookBundle package. 5 * 6 * (c) FriendsOfSymfony <http://friendsofsymfony.github.com/> 7 * 8 * For the full copyright and license information, please view the LICENSE 9 * file that was distributed with this source code. 10 */ 11 12$file = __DIR__.'/../vendor/autoload.php'; 13if (!file_exists($file)) { 14 throw new RuntimeException('Install dependencies to run test suite.'); 15} 16 17$autoload = require_once $file;