TestInit.php 294 Bytes
Newer Older
jwage's avatar
jwage committed
1
<?php
romanb's avatar
romanb committed
2 3 4
/*
 * This file bootstraps the test environment.
 */
5
namespace Doctrine\Tests;
romanb's avatar
romanb committed
6

7 8
error_reporting(E_ALL | E_STRICT);

9
require_once __DIR__ . '/../../../vendor/autoload.php';
10 11

$classLoader = new \Doctrine\Common\ClassLoader('Doctrine\Tests', __DIR__ . '/../../');
12
$classLoader->register();
13