Base for a static organization website

AllTestsTest.php 1015B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. /**
  3. * AllTestsTest For DebugKit
  4. *
  5. * PHP 5
  6. *
  7. * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
  8. * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
  9. *
  10. * Licensed under The MIT License
  11. * Redistributions of files must retain the above copyright notice.
  12. *
  13. * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
  14. * @link http://cakephp.org CakePHP(tm) Project
  15. * @since DebugKit 1.0
  16. * @license http://www.opensource.org/licenses/mit-license.php MIT License
  17. */
  18. require_once dirname(__FILE__) . DS . 'DebugkitGroupTestCase.php';
  19. /**
  20. * AllTestsTest class
  21. *
  22. * @since DebugKit 1.0
  23. */
  24. class AllTestsTest extends DebugkitGroupTestCase {
  25. /**
  26. * Assemble Test Suite
  27. *
  28. * @return PHPUnit_Framework_TestSuite the instance of PHPUnit_Framework_TestSuite
  29. */
  30. public static function suite() {
  31. $suite = new self;
  32. $files = $suite->getTestFiles();
  33. $suite->addTestFiles($files);
  34. return $suite;
  35. }
  36. }