22 lines
701 B
PHP
22 lines
701 B
PHP
<?php
|
|
// $Id: calendar_tabular_tests.php 198886 2005-10-20 18:59:45Z quipo $
|
|
|
|
require_once('simple_include.php');
|
|
require_once('calendar_include.php');
|
|
|
|
class CalendarTabularTests extends GroupTest {
|
|
function CalendarTabularTests() {
|
|
$this->GroupTest('Calendar Tabular Tests');
|
|
$this->addTestFile('month_weekdays_test.php');
|
|
$this->addTestFile('month_weeks_test.php');
|
|
$this->addTestFile('week_test.php');
|
|
//$this->addTestFile('week_firstday_0_test.php'); //switch with the above
|
|
}
|
|
}
|
|
|
|
if (!defined('TEST_RUNNING')) {
|
|
define('TEST_RUNNING', true);
|
|
$test = &new CalendarTabularTests();
|
|
$test->run(new HtmlReporter());
|
|
}
|
|
?>
|