AllViewTestsTest.php 360 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * Group test - Tools
  4. */
  5. class AllViewTestsTest 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 View tests');
  13. $path = dirname(__FILE__);
  14. $Suite->addTestDirectory($path . DS . 'View');
  15. return $Suite;
  16. }
  17. }