home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2005 June / PCpro_2005_06.ISO / files / opensource / xamp / xampp-win32.exe / xampp / all_tests.php < prev    next >
Encoding:
PHP Script  |  2004-10-01  |  620 b   |  25 lines

  1. <?php
  2. // $Id: all_tests.php,v 1.1 2003/11/30 17:30:01 quipo Exp $
  3.  
  4. require_once 'simple_include.php';
  5. require_once 'pager_include.php';
  6.  
  7. define('TEST_RUNNING', true);
  8.  
  9. require_once './pager_tests.php';
  10. require_once './pager_jumping_tests.php';
  11. require_once './pager_sliding_tests.php';
  12.  
  13.  
  14. class AllTests extends GroupTest {
  15.     function AllTests() {
  16.         $this->GroupTest('All PEAR::Pager Tests');
  17.         $this->AddTestCase(new PagerTests());
  18.         $this->AddTestCase(new PagerJumpingTests());
  19.         $this->AddTestCase(new PagerSlidingTests());
  20.     }
  21. }
  22.  
  23. $test = &new AllTests();
  24. $test->run(new HtmlReporter());
  25. ?>