ZF-8222: format class name for class checks
[zend.git] / tests / Zend / Cache / SkipTests.php
blob296498321e62a77d5ec35342741bb6081966e9c3
1 <?php
2 /**
3 * Zend Framework
5 * LICENSE
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.
15 * @category Zend
16 * @package Zend_Cache
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
20 * @version $Id$
23 /**
24 * PHPUnit_Framework_TestCase
26 require_once 'PHPUnit/Framework/TestCase.php';
28 require_once 'PHPUnit/Util/Filter.php';
30 PHPUnit_Util_Filter::addFileToFilter(__FILE__);
32 /**
33 * @category Zend
34 * @package Zend_Cache
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
38 * @group Zend_Cache
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
57 /**
58 * @category Zend
59 * @package Zend_Cache
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
63 * @group Zend_Cache
65 class Zend_Cache_ApcBackendTest_SkipTests extends Zend_Cache_BackendTest_SkipTests
69 /**
70 * @category Zend
71 * @package Zend_Cache
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
75 * @group Zend_Cache
77 class Zend_Cache_XcacheBackendTest_SkipTests extends Zend_Cache_BackendTest_SkipTests
81 /**
82 * @category Zend
83 * @package Zend_Cache
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
87 * @group Zend_Cache
89 class Zend_Cache_MemcachedBackendTest_SkipTests extends Zend_Cache_BackendTest_SkipTests
93 /**
94 * @category Zend
95 * @package Zend_Cache
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
99 * @group Zend_Cache
101 class Zend_Cache_SqliteBackendTest_SkipTests extends Zend_Cache_BackendTest_SkipTests
106 * @category Zend
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
111 * @group Zend_Cache
113 class Zend_Cache_ZendPlatformBackendTest_SkipTests extends Zend_Cache_BackendTest_SkipTests
118 * @category Zend
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
123 * @group Zend_Cache
125 class Zend_Cache_TwoLevelsBackendTest_SkipTests extends Zend_Cache_BackendTest_SkipTests
130 * @category Zend
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
135 * @group Zend_Cache
137 class Zend_Cache_ZendServerTest_SkipTests extends Zend_Cache_BackendTest_SkipTests