|
@@ -2,7 +2,7 @@
|
|
|
/**
|
|
|
* This is bootstrap for phpUnit unit tests,
|
|
|
* use README.md for more details
|
|
|
- *
|
|
|
+ *
|
|
|
* @author Gediminas Morkevicius <gediminas.morkevicius@gmail.com>
|
|
|
* @package Gedmo.Tests
|
|
|
* @link http://www.gediminasm.org
|
|
@@ -25,30 +25,33 @@ if (!file_exists($classLoaderFile)) {
|
|
|
|
|
|
require_once $classLoaderFile;
|
|
|
$classLoader = new Doctrine\Common\ClassLoader(
|
|
|
- 'Doctrine\ORM', 'doctrine-orm/lib'
|
|
|
+ 'Doctrine\ORM', 'doctrine-orm/lib'
|
|
|
);
|
|
|
$classLoader->register();
|
|
|
|
|
|
$classLoader = new Doctrine\Common\ClassLoader(
|
|
|
- 'Doctrine\DBAL', 'doctrine-dbal/lib'
|
|
|
+ 'Doctrine\DBAL', 'doctrine-dbal/lib'
|
|
|
);
|
|
|
$classLoader->register();
|
|
|
|
|
|
$classLoader = new Doctrine\Common\ClassLoader(
|
|
|
- 'Doctrine\MongoDB', 'doctrine-mongodb/lib'
|
|
|
+ 'Doctrine\MongoDB', 'doctrine-mongodb/lib'
|
|
|
);
|
|
|
$classLoader->register();
|
|
|
|
|
|
$classLoader = new Doctrine\Common\ClassLoader(
|
|
|
- 'Doctrine\ODM', 'doctrine-mongodb-odm/lib'
|
|
|
+ 'Doctrine\ODM', 'doctrine-mongodb-odm/lib'
|
|
|
);
|
|
|
$classLoader->register();
|
|
|
|
|
|
$classLoader = new Doctrine\Common\ClassLoader(
|
|
|
- 'Doctrine', 'doctrine-common/lib'
|
|
|
+ 'Doctrine', 'doctrine-common/lib'
|
|
|
);
|
|
|
$classLoader->register();
|
|
|
|
|
|
+$classLoader = new Doctrine\Common\ClassLoader('Gedmo\Mapping\Mock', __DIR__);
|
|
|
+$classLoader->register();
|
|
|
+
|
|
|
$classLoader = new Doctrine\Common\ClassLoader('Symfony');
|
|
|
$classLoader->register();
|
|
|
|
|
@@ -75,4 +78,4 @@ $classLoader = new Doctrine\Common\ClassLoader('Mapping\Fixture', __DIR__ . '/Ge
|
|
|
$classLoader->register();
|
|
|
|
|
|
$classLoader = new Doctrine\Common\ClassLoader('Loggable\Fixture', __DIR__ . '/Gedmo');
|
|
|
-$classLoader->register();
|
|
|
+$classLoader->register();
|