33 lines
642 B
PHP
33 lines
642 B
PHP
<?php
|
|
|
|
if (!defined('PHPUnit_MAIN_METHOD')) {
|
|
define('PHPUnit_MAIN_METHOD', 'AllTests::main');
|
|
}
|
|
|
|
require_once 'lib/DoctrineTestInit.php';
|
|
|
|
// Suites
|
|
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()
|
|
{
|
|
$suite = new Doctrine_TestSuite('Doctrine Tests');
|
|
|
|
$suite->addTest(Dbal_AllTests::suite());
|
|
$suite->addTest(Orm_AllTests::suite());
|
|
|
|
return $suite;
|
|
}
|
|
}
|
|
|
|
if (PHPUnit_MAIN_METHOD == 'AllTests::main') {
|
|
AllTests::main();
|
|
} |