Subversion Repositories Applications.gtt

Rev

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

Rev Author Line No. Line
10 jpm 1
<?php
2
// $Id: table_helper_tests.php,v 1.1 2004/05/24 22:25:43 quipo Exp $
3
 
4
require_once('simple_include.php');
5
require_once('calendar_include.php');
6
 
7
class TableHelperTests extends GroupTest {
8
    function TableHelperTests() {
9
        $this->GroupTest('Table Helper Tests');
10
        $this->addTestFile('helper_test.php');
11
    }
12
}
13
 
14
if (!defined('TEST_RUNNING')) {
15
    define('TEST_RUNNING', true);
16
    $test = &new TableHelperTests();
17
    $test->run(new HtmlReporter());
18
}
19
?>