Include ReporterTest.php in AllTests
[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('simpletest/reporter.php');
8
9 $test = new GroupTest('All Tests');
10
11 $test->addTestFile('LoaderTest.php');
12 $test->addTestFile('RegisterTest.php');
13
14 // run
15 $test->run(new HtmlReporter);
16
17 ?>