1
0
mirror of synced 2024-12-13 22:56:04 +03:00
doctrine2/tests/AllTests.php

32 lines
641 B
PHP
Raw Normal View History

2008-02-08 22:35:27 +03:00
<?php
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();
}