2 define('TEST_RUNNING',TRUE);
4 require_once 'config.php';
6 class AllTests extends GroupTest {
9 $this->GroupTest('All PHPUTF8 Tests');
13 function loadGroups() {
14 $path = dirname(__FILE__).'/cases';
15 if ( $d = opendir($path) ) {
16 while (($file = readdir($d)) !== false) {
17 if ( is_file($path.'/'.$file) ) {
18 $farray = explode('.',$file);
19 if ( $farray[1] == 'test' ) {
20 $this->AddTestFile($path.'/'.$file);
31 $test = &new AllTests();
32 $test->run(getTestReporter());