home *** CD-ROM | disk | FTP | other *** search
- <?php
- // $Id: all_tests.php,v 1.1 2003/11/30 17:30:01 quipo Exp $
-
- require_once 'simple_include.php';
- require_once 'pager_include.php';
-
- define('TEST_RUNNING', true);
-
- require_once './pager_tests.php';
- require_once './pager_jumping_tests.php';
- require_once './pager_sliding_tests.php';
-
-
- class AllTests extends GroupTest {
- function AllTests() {
- $this->GroupTest('All PEAR::Pager Tests');
- $this->AddTestCase(new PagerTests());
- $this->AddTestCase(new PagerJumpingTests());
- $this->AddTestCase(new PagerSlidingTests());
- }
- }
-
- $test = &new AllTests();
- $test->run(new HtmlReporter());
- ?>