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: all_tests.php,v 1.2 2004/08/16 08:55:24 hfuecks Exp $
3
 
4
require_once('simple_include.php');
5
require_once('calendar_include.php');
6
 
7
define("TEST_RUNNING", true);
8
 
9
require_once('./calendar_tests.php');
10
require_once('./calendar_tabular_tests.php');
11
require_once('./validator_tests.php');
12
require_once('./calendar_engine_tests.php');
13
require_once('./calendar_engine_tests.php');
14
require_once('./table_helper_tests.php');
15
require_once('./decorator_tests.php');
16
require_once('./util_tests.php');
17
 
18
 
19
class 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
?>