7 * This source file is subject to the new BSD license that is bundled
8 * with this package in the file LICENSE.txt.
9 * It is also available through the world-wide-web at this URL:
10 * http://framework.zend.com/license/new-bsd
11 * If you did not receive a copy of the license and are unable to
12 * obtain it through the world-wide-web, please send an email
13 * to license@zend.com so we can send you a copy immediately.
17 * @subpackage UnitTests
18 * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
19 * @license http://framework.zend.com/license/new-bsd New BSD License
24 * PHPUnit_Framework_TestCase
26 require_once 'PHPUnit/Framework/TestCase.php';
28 require_once 'PHPUnit/Util/Filter.php';
30 PHPUnit_Util_Filter
::addFileToFilter(__FILE__
);
35 * @subpackage UnitTests
36 * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
37 * @license http://framework.zend.com/license/new-bsd New BSD License
40 abstract class Zend_Cache_BackendTest_SkipTests
extends PHPUnit_Framework_TestCase
43 public $message = 'Skipped for unspecified reason';
45 public function setUp()
47 $this->markTestSkipped($this->message
);
50 public function testCacheBackend()
52 // this is here only so we have at least one test
60 * @subpackage UnitTests
61 * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
62 * @license http://framework.zend.com/license/new-bsd New BSD License
65 class Zend_Cache_ApcBackendTest_SkipTests
extends Zend_Cache_BackendTest_SkipTests
72 * @subpackage UnitTests
73 * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
74 * @license http://framework.zend.com/license/new-bsd New BSD License
77 class Zend_Cache_XcacheBackendTest_SkipTests
extends Zend_Cache_BackendTest_SkipTests
84 * @subpackage UnitTests
85 * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
86 * @license http://framework.zend.com/license/new-bsd New BSD License
89 class Zend_Cache_MemcachedBackendTest_SkipTests
extends Zend_Cache_BackendTest_SkipTests
96 * @subpackage UnitTests
97 * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
98 * @license http://framework.zend.com/license/new-bsd New BSD License
101 class Zend_Cache_SqliteBackendTest_SkipTests
extends Zend_Cache_BackendTest_SkipTests
107 * @package Zend_Cache
108 * @subpackage UnitTests
109 * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
110 * @license http://framework.zend.com/license/new-bsd New BSD License
113 class Zend_Cache_ZendPlatformBackendTest_SkipTests
extends Zend_Cache_BackendTest_SkipTests
119 * @package Zend_Cache
120 * @subpackage UnitTests
121 * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
122 * @license http://framework.zend.com/license/new-bsd New BSD License
125 class Zend_Cache_TwoLevelsBackendTest_SkipTests
extends Zend_Cache_BackendTest_SkipTests
131 * @package Zend_Cache
132 * @subpackage UnitTests
133 * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
134 * @license http://framework.zend.com/license/new-bsd New BSD License
137 class Zend_Cache_ZendServerTest_SkipTests
extends Zend_Cache_BackendTest_SkipTests