source: branches/version-2_5-dev/data/module/Calendar/tests/calendar_tests.php @ 20116

Revision 20116, 678 bytes checked in by nanasess, 13 years ago (diff)
  • svn properties を再設定
  • 再設定用のスクリプト追加
  • Property svn:eol-style set to LF
  • Property svn:keywords set to Id
  • Property svn:mime-type set to text/x-httpd-php; charset=UTF-8
Line 
1<?php
2// $Id$
3
4require_once('simple_include.php');
5require_once('calendar_include.php');
6
7class CalendarTests extends GroupTest {
8    function CalendarTests() {
9        $this->GroupTest('Calendar Tests');
10        $this->addTestFile('calendar_test.php');
11        $this->addTestFile('year_test.php');
12        $this->addTestFile('month_test.php');
13        $this->addTestFile('day_test.php');
14        $this->addTestFile('hour_test.php');
15        $this->addTestFile('minute_test.php');
16        $this->addTestFile('second_test.php');
17    }
18}
19
20if (!defined('TEST_RUNNING')) {
21    define('TEST_RUNNING', true);
22    $test = &new CalendarTests();
23    $test->run(new HtmlReporter());
24}
25?>
Note: See TracBrowser for help on using the repository browser.