PageRenderTime 46ms CodeModel.GetById 17ms RepoModel.GetById 0ms app.codeStats 0ms

/cake/tests/groups/cache.group.php

https://github.com/hardsshah/bookmarks
PHP | 54 lines | 9 code | 0 blank | 45 comment | 0 complexity | 711cb8367578de9dfdda87d33c572ceb MD5 | raw file
  1. <?php
  2. /* SVN FILE: $Id$ */
  3. /**
  4. * AllCacheEnginesGroupTest file
  5. *
  6. * Long description for file
  7. *
  8. * PHP versions 4 and 5
  9. *
  10. * CakePHP(tm) Tests <https://trac.cakephp.org/wiki/Developement/TestSuite>
  11. * Copyright 2005-2008, Cake Software Foundation, Inc. (http://www.cakefoundation.org)
  12. *
  13. * Licensed under The Open Group Test Suite License
  14. * Redistributions of files must retain the above copyright notice.
  15. *
  16. * @filesource
  17. * @copyright Copyright 2005-2008, Cake Software Foundation, Inc. (http://www.cakefoundation.org)
  18. * @link https://trac.cakephp.org/wiki/Developement/TestSuite CakePHP(tm) Tests
  19. * @package cake
  20. * @subpackage cake.tests.groups
  21. * @since CakePHP(tm) v 1.2.0.4206
  22. * @version $Revision$
  23. * @modifiedby $LastChangedBy$
  24. * @lastmodified $Date$
  25. * @license http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License
  26. */
  27. /**
  28. * AllCacheEnginesGroupTest class
  29. *
  30. * This test group will run all the Cache class test and all core cache engine tests
  31. *
  32. * @package cake
  33. * @subpackage cake.tests.groups
  34. */
  35. class AllCacheEnginesGroupTest extends GroupTest {
  36. /**
  37. * label property
  38. *
  39. * @var string 'All core cache engines'
  40. * @access public
  41. */
  42. var $label = 'Cache and all CacheEngines';
  43. /**
  44. * AllCacheEnginesGroupTest method
  45. *
  46. * @access public
  47. * @return void
  48. */
  49. function AllCacheEnginesGroupTest() {
  50. TestManager::addTestFile($this, CORE_TEST_CASES . DS . 'libs' . DS . 'cache');
  51. TestManager::addTestCasesFromDirectory($this, CORE_TEST_CASES . DS . 'libs' . DS . 'cache');
  52. }
  53. }
  54. ?>