File: pager_sliding_tests.php

package info (click to toggle)
php-pager 2.4.6-1
  • links: PTS
  • area: main
  • in suites: lenny, squeeze
  • size: 304 kB
  • ctags: 763
  • sloc: php: 2,620; xml: 660; makefile: 4
file content (21 lines) | stat: -rw-r--r-- 602 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php
// $Id: pager_sliding_tests.php,v 1.2 2003/12/10 20:21:53 quipo Exp $

require_once 'simple_include.php';
require_once 'pager_include.php';

class PagerSlidingTests extends GroupTest {
    function PagerSlidingTests() {
        $this->GroupTest('Pager_Sliding Tests');
        $this->addTestFile('pager_sliding_test.php');
        $this->addTestFile('pager_sliding_notExpanded_test.php');
        $this->addTestFile('pager_sliding_noData_test.php');
    }
}

if (!defined('TEST_RUNNING')) {
    define('TEST_RUNNING', true);
    $test = &new PagerTests();
    $test->run(new HtmlReporter());
}
?>