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

Revision 20116, 992 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
7define("TEST_RUNNING", true);
8
9require_once('./calendar_tests.php');
10require_once('./calendar_tabular_tests.php');
11require_once('./validator_tests.php');
12require_once('./calendar_engine_tests.php');
13require_once('./calendar_engine_tests.php');
14require_once('./table_helper_tests.php');
15require_once('./decorator_tests.php');
16require_once('./util_tests.php');
17
18
19class AllTests extends GroupTest {
20    function AllTests() {
21        $this->GroupTest('All PEAR::Calendar Tests');
22        $this->AddTestCase(new CalendarTests());
23        $this->AddTestCase(new CalendarTabularTests());
24        $this->AddTestCase(new ValidatorTests());
25        $this->AddTestCase(new CalendarEngineTests());
26        $this->AddTestCase(new TableHelperTests());
27        $this->AddTestCase(new DecoratorTests());
28        $this->AddTestCase(new UtilTests());
29    }
30}
31
32$test = &new AllTests();
33$test->run(new HtmlReporter());
34?>
Note: See TracBrowser for help on using the repository browser.