1
0
mirror of synced 2024-12-14 23:26:04 +03:00
doctrine2/tests/Doctrine/Tests/Common/Cache/AllTests.php

33 lines
875 B
PHP
Raw Normal View History

2009-07-15 02:36:09 +04:00
<?php
namespace Doctrine\Tests\Common\Cache;
if (!defined('PHPUnit_MAIN_METHOD')) {
define('PHPUnit_MAIN_METHOD', 'Common_Cache_AllTests::main');
}
require_once __DIR__ . '/../../TestInit.php';
class AllTests
{
public static function main()
{
\PHPUnit_TextUI_TestRunner::run(self::suite());
}
public static function suite()
{
$suite = new \Doctrine\Tests\DoctrineTestSuite('Doctrine Common Cache Tests');
$suite->addTestSuite('Doctrine\Tests\Common\Cache\ApcCacheTest');
$suite->addTestSuite('Doctrine\Tests\Common\Cache\ArrayCacheTest');
//$suite->addTestSuite('Doctrine\Tests\Common\Cache\MemcacheCacheTest');
2009-07-15 02:36:09 +04:00
$suite->addTestSuite('Doctrine\Tests\Common\Cache\XcacheCacheTest');
return $suite;
}
}
if (PHPUnit_MAIN_METHOD == 'Common_Cache_AllTests::main') {
AllTests::main();
}