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

30 lines
611 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_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/Component/AllTests.php';
class Dbal_AllTests
{
public static function main()
{
PHPUnit_TextUI_TestRunner::run(self::suite());
}
public static function suite()
{
2008-02-09 21:59:19 +03:00
$suite = new Doctrine_DbalTestSuite('Doctrine Dbal');
2008-02-08 22:35:27 +03:00
$suite->addTest(Dbal_Component_AllTests::suite());
return $suite;
}
}
if (PHPUnit_MAIN_METHOD == 'Dbal_AllTests::main') {
Dbal_AllTests::main();
}