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
class PagerSlidingTests extends GroupTest {
8
    function PagerSlidingTests() {
9
        $this->GroupTest('Pager_Sliding Tests');
10
        $this->addTestFile('pager_sliding_test.php');
11
        $this->addTestFile('pager_sliding_notExpanded_test.php');
12
        $this->addTestFile('pager_sliding_noData_test.php');
13
    }
14
}
15
 
16
if (!defined('TEST_RUNNING')) {
17
    define('TEST_RUNNING', true);
18
    $test = &new PagerTests();
19
    $test->run(new HtmlReporter());
20
}
21
?>