Changeset 4525
- Timestamp:
- 06/18/08 18:51:28 (13 months ago)
- Files:
-
- 1 modified
-
branches/0.11/tests/run.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/0.11/tests/run.php
r4519 r4525 5 5 6 6 require_once(dirname(__FILE__) . '/DoctrineTest.php'); 7 require_once dirname(__FILE__) . '/../lib/Doctrine.php';7 require_once((defined('DOCTRINE_DIR') ? DOCTRINE_DIR : dirname(__FILE__) . '/../lib/') .'Doctrine.php'); 8 8 spl_autoload_register(array('Doctrine', 'autoload')); 9 9 spl_autoload_register(array('DoctrineTest','autoload')); … … 89 89 $driver->addTestCase(new Doctrine_Connection_Oracle_TestCase()); 90 90 $driver->addTestCase(new Doctrine_Connection_Sqlite_TestCase()); 91 $driver->addTestCase(new Doctrine_Connection_Mssql_TestCase()); 91 $driver->addTestCase(new Doctrine_Connection_Mssql_TestCase()); 92 92 $driver->addTestCase(new Doctrine_Connection_Mysql_TestCase()); 93 93 $driver->addTestCase(new Doctrine_Connection_Firebird_TestCase());