Subversion-Projekte lars-tiefland.php_share

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
<?php
2
// $Id: validator_tests.php 159563 2004-05-24 22:25:43Z quipo $
3
 
4
require_once('simple_include.php');
5
require_once('calendar_include.php');
6
 
7
class ValidatorTests extends GroupTest {
8
    function ValidatorTests() {
9
        $this->GroupTest('Validator Tests');
10
        $this->addTestFile('validator_unit_test.php');
11
        $this->addTestFile('validator_error_test.php');
12
    }
13
}
14
 
15
if (!defined('TEST_RUNNING')) {
16
    define('TEST_RUNNING', true);
17
    $test = &new ValidatorTests();
18
    $test->run(new HtmlReporter());
19
}
20
?>