Rajout de doctrine/orm
[zf2.biz/galerie.git] / vendor / doctrine / dbal / tests / Doctrine / Tests / TestInit.php
1 <?php
2 /*
3  * This file bootstraps the test environment.
4  */
5 namespace Doctrine\Tests;
6
7 error_reporting(E_ALL | E_STRICT);
8
9 require_once __DIR__ . '/../../../lib/vendor/doctrine-common/lib/Doctrine/Common/ClassLoader.php';
10
11 $classLoader = new \Doctrine\Common\ClassLoader('Doctrine\Common', __DIR__ . '/../../../lib/vendor/doctrine-common/lib');
12 $classLoader->register();
13
14 $classLoader = new \Doctrine\Common\ClassLoader('Doctrine\DBAL', __DIR__ . '/../../../lib');
15 $classLoader->register();
16
17 $classLoader = new \Doctrine\Common\ClassLoader('Doctrine\Tests', __DIR__ . '/../../');
18 $classLoader->register();
19
20 $classLoader = new \Doctrine\Common\ClassLoader('Symfony', __DIR__ . "/../../../lib/vendor");
21 $classLoader->register();
22