PageRenderTime 59ms CodeModel.GetById 34ms RepoModel.GetById 1ms app.codeStats 0ms

/cake/tests/groups/console.group.php

https://github.com/hardsshah/bookmarks
PHP | 53 lines | 8 code | 0 blank | 45 comment | 0 complexity | 9d3d023b1bdeec49b9de8b05d2db7e48 MD5 | raw file
  1. <?php
  2. /* SVN FILE: $Id$ */
  3. /**
  4. * ConsoleGroupTest 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. * AllConsoleGroupTest class
  29. *
  30. * This test group will run all console tests
  31. *
  32. * @package cake
  33. * @subpackage cake.tests.groups
  34. */
  35. class AllConsoleGroupTest extends GroupTest {
  36. /**
  37. * label property
  38. *
  39. * @var string 'All core cache engines'
  40. * @access public
  41. */
  42. var $label = 'ShellDispatcher, Shell and all Tasks';
  43. /**
  44. * AllConsoleGroupTest method
  45. *
  46. * @access public
  47. * @return void
  48. */
  49. function AllConsoleGroupTest() {
  50. TestManager::addTestCasesFromDirectory($this, CORE_TEST_CASES . DS . 'console');
  51. }
  52. }
  53. ?>