1
0
mirror of synced 2024-12-14 07:06:04 +03:00
doctrine2/tests/Orm/Component/AllTests.php

30 lines
642 B
PHP
Raw Normal View History

2008-02-08 22:35:27 +03:00
<?php
if (!defined('PHPUnit_MAIN_METHOD')) {
define('PHPUnit_MAIN_METHOD', 'Dbal_Component_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
// Tests
2008-02-08 22:35:27 +03:00
require_once 'Orm/Component/TestTest.php';
class Orm_Component_AllTests
{
public static function main()
{
PHPUnit_TextUI_TestRunner::run(self::suite());
}
public static function suite()
{
2008-02-10 17:32:05 +03:00
$suite = new Doctrine_TestSuite('Doctrine Orm Component');
2008-02-08 22:35:27 +03:00
$suite->addTestSuite('Orm_Component_TestTest');
return $suite;
}
}
if (PHPUnit_MAIN_METHOD == 'Dbal_Component_AllTests::main') {
Dbal_Component_AllTests::main();
}