Subversion Repositories Applications.papyrus

Rev

Rev 1371 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
848 florian 1
<?php
2
// $Id$
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
?>