SkipTests.php 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. <?php
  2. /**
  3. * Zend Framework
  4. *
  5. * LICENSE
  6. *
  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.
  14. *
  15. * @category Zend
  16. * @package Zend_Cache
  17. * @subpackage UnitTests
  18. * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
  19. * @license http://framework.zend.com/license/new-bsd New BSD License
  20. * @version $Id$
  21. */
  22. /**
  23. * PHPUnit_Framework_TestCase
  24. */
  25. /**
  26. * @category Zend
  27. * @package Zend_Cache
  28. * @subpackage UnitTests
  29. * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
  30. * @license http://framework.zend.com/license/new-bsd New BSD License
  31. * @group Zend_Cache
  32. */
  33. abstract class Zend_Cache_BackendTest_SkipTests extends PHPUnit_Framework_TestCase
  34. {
  35. public $message = 'Skipped for unspecified reason';
  36. public function setUp()
  37. {
  38. $this->markTestSkipped($this->message);
  39. }
  40. public function testCacheBackend()
  41. {
  42. // this is here only so we have at least one test
  43. }
  44. }
  45. /**
  46. * @category Zend
  47. * @package Zend_Cache
  48. * @subpackage UnitTests
  49. * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
  50. * @license http://framework.zend.com/license/new-bsd New BSD License
  51. * @group Zend_Cache
  52. */
  53. class Zend_Cache_ApcBackendTest_SkipTests extends Zend_Cache_BackendTest_SkipTests
  54. {
  55. }
  56. /**
  57. * @category Zend
  58. * @package Zend_Cache
  59. * @subpackage UnitTests
  60. * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
  61. * @license http://framework.zend.com/license/new-bsd New BSD License
  62. * @group Zend_Cache
  63. */
  64. class Zend_Cache_WinCacheBackendTest_SkipTests extends Zend_Cache_BackendTest_SkipTests
  65. {
  66. }
  67. /**
  68. * @category Zend
  69. * @package Zend_Cache
  70. * @subpackage UnitTests
  71. * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
  72. * @license http://framework.zend.com/license/new-bsd New BSD License
  73. * @group Zend_Cache
  74. */
  75. class Zend_Cache_XcacheBackendTest_SkipTests extends Zend_Cache_BackendTest_SkipTests
  76. {
  77. }
  78. /**
  79. * @category Zend
  80. * @package Zend_Cache
  81. * @subpackage UnitTests
  82. * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
  83. * @license http://framework.zend.com/license/new-bsd New BSD License
  84. * @group Zend_Cache
  85. */
  86. class Zend_Cache_MemcachedBackendTest_SkipTests extends Zend_Cache_BackendTest_SkipTests
  87. {
  88. }
  89. /**
  90. * @category Zend
  91. * @package Zend_Cache
  92. * @subpackage UnitTests
  93. * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
  94. * @license http://framework.zend.com/license/new-bsd New BSD License
  95. * @group Zend_Cache
  96. */
  97. class Zend_Cache_LibmemcachedBackendTest_SkipTests extends Zend_Cache_BackendTest_SkipTests
  98. {
  99. }
  100. /**
  101. * @category Zend
  102. * @package Zend_Cache
  103. * @subpackage UnitTests
  104. * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
  105. * @license http://framework.zend.com/license/new-bsd New BSD License
  106. * @group Zend_Cache
  107. */
  108. class Zend_Cache_SqliteBackendTest_SkipTests extends Zend_Cache_BackendTest_SkipTests
  109. {
  110. }
  111. /**
  112. * @category Zend
  113. * @package Zend_Cache
  114. * @subpackage UnitTests
  115. * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
  116. * @license http://framework.zend.com/license/new-bsd New BSD License
  117. * @group Zend_Cache
  118. */
  119. class Zend_Cache_ZendPlatformBackendTest_SkipTests extends Zend_Cache_BackendTest_SkipTests
  120. {
  121. }
  122. /**
  123. * @category Zend
  124. * @package Zend_Cache
  125. * @subpackage UnitTests
  126. * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
  127. * @license http://framework.zend.com/license/new-bsd New BSD License
  128. * @group Zend_Cache
  129. */
  130. class Zend_Cache_TwoLevelsBackendTest_SkipTests extends Zend_Cache_BackendTest_SkipTests
  131. {
  132. }
  133. /**
  134. * @category Zend
  135. * @package Zend_Cache
  136. * @subpackage UnitTests
  137. * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
  138. * @license http://framework.zend.com/license/new-bsd New BSD License
  139. * @group Zend_Cache
  140. */
  141. class Zend_Cache_ZendServerTest_SkipTests extends Zend_Cache_BackendTest_SkipTests
  142. {
  143. }