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: calendar_tabular_tests.php,v 1.2 2005/10/20 18:59:45 quipo Exp $
3
 
4
require_once('simple_include.php');
5
require_once('calendar_include.php');
6
 
7
class CalendarTabularTests extends GroupTest {
8
    function CalendarTabularTests() {
9
        $this->GroupTest('Calendar Tabular Tests');
10
        $this->addTestFile('month_weekdays_test.php');
11
        $this->addTestFile('month_weeks_test.php');
12
        $this->addTestFile('week_test.php');
13
        //$this->addTestFile('week_firstday_0_test.php'); //switch with the above
14
    }
15
}
16
 
17
if (!defined('TEST_RUNNING')) {
18
    define('TEST_RUNNING', true);
19
    $test = &new CalendarTabularTests();
20
    $test->run(new HtmlReporter());
21
}
22
?>