2008-02-08 19:35:27 +00:00
|
|
|
<?php
|
|
|
|
if (!defined('PHPUnit_MAIN_METHOD')) {
|
2008-04-12 21:35:21 +00:00
|
|
|
define('PHPUnit_MAIN_METHOD', 'Orm_Component_AllTests::main');
|
2008-02-08 19:35:27 +00:00
|
|
|
}
|
|
|
|
|
2008-02-08 23:20:35 +00:00
|
|
|
require_once 'lib/DoctrineTestInit.php';
|
2008-02-08 19:35:27 +00:00
|
|
|
|
2008-02-08 23:20:35 +00:00
|
|
|
// Tests
|
2008-02-14 20:20:35 +00:00
|
|
|
require_once 'Orm/Component/AccessTest.php';
|
2008-02-15 00:57:34 +00:00
|
|
|
require_once 'Orm/Component/CollectionTest.php';
|
2008-02-08 19:35:27 +00:00
|
|
|
|
|
|
|
class Orm_Component_AllTests
|
|
|
|
{
|
|
|
|
public static function main()
|
|
|
|
{
|
|
|
|
PHPUnit_TextUI_TestRunner::run(self::suite());
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function suite()
|
|
|
|
{
|
2008-02-10 14:32:05 +00:00
|
|
|
$suite = new Doctrine_TestSuite('Doctrine Orm Component');
|
2008-02-08 19:35:27 +00:00
|
|
|
|
2008-02-16 19:37:51 +00:00
|
|
|
$suite->addTestSuite('Orm_Component_AccessTest');
|
|
|
|
$suite->addTestSuite('Orm_Component_CollectionTest');
|
2008-02-08 19:35:27 +00:00
|
|
|
|
|
|
|
return $suite;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-04-12 21:35:21 +00:00
|
|
|
if (PHPUnit_MAIN_METHOD == 'Orm_Component_AllTests::main') {
|
2008-05-24 18:18:37 +00:00
|
|
|
Orm_Component_AllTests::main();
|
2008-02-14 20:20:35 +00:00
|
|
|
}
|