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

Revision 20119, 579 bytes 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: decorator_tests.php,v 1.1 2004/05/24 22:25:43 quipo Exp $
3
4require_once('simple_include.php');
5require_once('calendar_include.php');
6
7class DecoratorTests extends GroupTest {
8    function DecoratorTests() {
9        $this->GroupTest('Decorator Tests');
10        $this->addTestFile('decorator_test.php');
11        $this->addTestFile('decorator_textual_test.php');
12        $this->addTestFile('decorator_uri_test.php');
13    }
14}
15
16if (!defined('TEST_RUNNING')) {
17    define('TEST_RUNNING', true);
18    $test = &new DecoratorTests();
19    $test->run(new HtmlReporter());
20}
21?>
Note: See TracBrowser for help on using the repository browser.