home *** CD-ROM | disk | FTP | other *** search
/ Enter 2004 June / ENTER.ISO / files / xampp-win32-1.4.5-installer.exe / xampp / all_tests.php < prev    next >
Encoding:
PHP Script  |  2004-03-24  |  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. ?>