Subversion Repositories Applications.papyrus

Rev

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

Rev Author Line No. Line
493 ddelon 1
<?php
2
// $Id: calendar_tabular_tests.php,v 1.1 2005-09-30 14:58:00 ddelon 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
    }
14
}
15
 
16
if (!defined('TEST_RUNNING')) {
17
    define('TEST_RUNNING', true);
18
    $test = &new CalendarTabularTests();
19
    $test->run(new HtmlReporter());
20
}
21
?>