Subversion-Projekte lars-tiefland.php_share

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
<?php
2
// $Id: all_tests.php 172905 2004-11-17 18:10:33Z quipo $
3
 
4
require_once 'simple_include.php';
5
require_once 'translation2_include.php';
6
 
7
define('TEST_RUNNING', true);
8
 
9
require_once './containers_tests.php';
10
require_once './admin_containers_tests.php';
11
 
12
 
13
class AllTests extends GroupTest {
14
    function AllTests() {
15
        $this->GroupTest('All PEAR::Translation2 Tests');
16
        $this->AddTestCase(new ContainersTests());
17
        $this->AddTestCase(new AdminContainersTests());
18
    }
19
}
20
 
21
$test = &new AllTests();
22
$test->run(new HtmlReporter());
23
?>