Subversion Repositories Applications.gtt

Rev

Rev 61 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
10 jpm 1
<?php
2
// $Id: decorator_tests.php,v 1.1 2004/05/24 22:25:43 quipo Exp $
3
 
4
require_once('simple_include.php');
5
require_once('calendar_include.php');
6
 
7
class 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
 
16
if (!defined('TEST_RUNNING')) {
17
    define('TEST_RUNNING', true);
18
    $test = &new DecoratorTests();
19
    $test->run(new HtmlReporter());
20
}
21
?>