SkipTests.php 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  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-2010 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. require_once 'PHPUnit/Framework/TestCase.php';
  26. /**
  27. * @category Zend
  28. * @package Zend_Cache
  29. * @subpackage UnitTests
  30. * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
  31. * @license http://framework.zend.com/license/new-bsd New BSD License
  32. * @group Zend_Cache
  33. */
  34. abstract class Zend_Cache_BackendTest_SkipTests extends PHPUnit_Framework_TestCase
  35. {
  36. public $message = 'Skipped for unspecified reason';
  37. public function setUp()
  38. {
  39. $this->markTestSkipped($this->message);
  40. }
  41. public function testCacheBackend()
  42. {
  43. // this is here only so we have at least one test
  44. }
  45. }
  46. /**
  47. * @category Zend
  48. * @package Zend_Cache
  49. * @subpackage UnitTests
  50. * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
  51. * @license http://framework.zend.com/license/new-bsd New BSD License
  52. * @group Zend_Cache
  53. */
  54. class Zend_Cache_ApcBackendTest_SkipTests extends Zend_Cache_BackendTest_SkipTests
  55. {
  56. }
  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
  64. */
  65. class Zend_Cache_XcacheBackendTest_SkipTests extends Zend_Cache_BackendTest_SkipTests
  66. {
  67. }
  68. /**
  69. * @category Zend
  70. * @package Zend_Cache
  71. * @subpackage UnitTests
  72. * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
  73. * @license http://framework.zend.com/license/new-bsd New BSD License
  74. * @group Zend_Cache
  75. */
  76. class Zend_Cache_MemcachedBackendTest_SkipTests extends Zend_Cache_BackendTest_SkipTests
  77. {
  78. }
  79. /**
  80. * @category Zend
  81. * @package Zend_Cache
  82. * @subpackage UnitTests
  83. * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
  84. * @license http://framework.zend.com/license/new-bsd New BSD License
  85. * @group Zend_Cache
  86. */
  87. class Zend_Cache_LibmemcachedBackendTest_SkipTests extends Zend_Cache_BackendTest_SkipTests
  88. {
  89. }
  90. /**
  91. * @category Zend
  92. * @package Zend_Cache
  93. * @subpackage UnitTests
  94. * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
  95. * @license http://framework.zend.com/license/new-bsd New BSD License
  96. * @group Zend_Cache
  97. */
  98. class Zend_Cache_SqliteBackendTest_SkipTests extends Zend_Cache_BackendTest_SkipTests
  99. {
  100. }
  101. /**
  102. * @category Zend
  103. * @package Zend_Cache
  104. * @subpackage UnitTests
  105. * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
  106. * @license http://framework.zend.com/license/new-bsd New BSD License
  107. * @group Zend_Cache
  108. */
  109. class Zend_Cache_ZendPlatformBackendTest_SkipTests extends Zend_Cache_BackendTest_SkipTests
  110. {
  111. }
  112. /**
  113. * @category Zend
  114. * @package Zend_Cache
  115. * @subpackage UnitTests
  116. * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
  117. * @license http://framework.zend.com/license/new-bsd New BSD License
  118. * @group Zend_Cache
  119. */
  120. class Zend_Cache_TwoLevelsBackendTest_SkipTests extends Zend_Cache_BackendTest_SkipTests
  121. {
  122. }
  123. /**
  124. * @category Zend
  125. * @package Zend_Cache
  126. * @subpackage UnitTests
  127. * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
  128. * @license http://framework.zend.com/license/new-bsd New BSD License
  129. * @group Zend_Cache
  130. */
  131. class Zend_Cache_ZendServerTest_SkipTests extends Zend_Cache_BackendTest_SkipTests
  132. {
  133. }