2008-02-08 22:35:27 +03:00
|
|
|
<?php
|
2009-01-04 19:15:32 +03:00
|
|
|
|
2008-02-08 22:35:27 +03:00
|
|
|
if (!defined('PHPUnit_MAIN_METHOD')) {
|
|
|
|
define('PHPUnit_MAIN_METHOD', 'AllTests::main');
|
|
|
|
}
|
|
|
|
|
2008-02-09 02:20:35 +03:00
|
|
|
require_once 'lib/DoctrineTestInit.php';
|
2008-02-08 22:35:27 +03:00
|
|
|
|
2008-02-09 02:20:35 +03:00
|
|
|
// Suites
|
2008-02-08 22:35:27 +03:00
|
|
|
require_once 'Dbal/AllTests.php';
|
|
|
|
require_once 'Orm/AllTests.php';
|
|
|
|
|
|
|
|
class AllTests
|
|
|
|
{
|
|
|
|
public static function main()
|
|
|
|
{
|
|
|
|
PHPUnit_TextUI_TestRunner::run(self::suite());
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function suite()
|
|
|
|
{
|
2008-02-09 02:20:35 +03:00
|
|
|
$suite = new Doctrine_TestSuite('Doctrine Tests');
|
2008-02-08 22:35:27 +03:00
|
|
|
|
|
|
|
$suite->addTest(Dbal_AllTests::suite());
|
|
|
|
$suite->addTest(Orm_AllTests::suite());
|
2008-02-08 23:50:05 +03:00
|
|
|
|
2008-02-08 22:35:27 +03:00
|
|
|
return $suite;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (PHPUnit_MAIN_METHOD == 'AllTests::main') {
|
|
|
|
AllTests::main();
|
|
|
|
}
|