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

Revision 20119, 1.0 KB checked in by nanasess, 13 years ago (diff)

module 以下は svn:keywords を除外

  • Property svn:eol-style set to LF
  • Property svn:mime-type set to text/x-httpd-php; charset=UTF-8
Line 
1<?php
2// $Id: all_tests.php,v 1.2 2004/08/16 08:55:24 hfuecks Exp $
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.