- Finished updating the date module
[isso.git] / UnitTest / AllTests.php
1 <?php
2
3 set_include_path(get_include_path() . ':/Server/htdocs');
4
5 // load the toolkit
6 require_once('simpletest/unit_tester.php');
7 require_once('../UnitTestReport.php');
8
9 $test = new GroupTest('All Tests');
10
11 $test->addTestFile('RegisterTest.php');
12 $test->addTestFile('FunctionsTest.php');
13 $test->addTestFile('DateTest.php');
14
15 // run
16 $test->run(new CustomHtmlReporter);
17
18 ?>