Removing BSLoader and we'll just go with a singleton instance of BSRegister
[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
14 // run
15 $test->run(new CustomHtmlReporter);
16
17 ?>