AllComponentTestsTest.php 395 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * Group test - Tools
  4. */
  5. class AllComponentTestsTest extends PHPUnit_Framework_TestSuite {
  6. /**
  7. * Suite method, defines tests for this suite.
  8. *
  9. * @return void
  10. */
  11. public static function suite() {
  12. $Suite = new CakeTestSuite('All Component tests');
  13. $path = dirname(__FILE__);
  14. $Suite->addTestDirectory($path . DS . 'Controller' . DS . 'Component');
  15. return $Suite;
  16. }
  17. }