$test->addTestFile($CFG->libdir.'/dml/simpletest/testdml.php');
$test->addTestFile($CFG->libdir.'/ddl/simpletest/testddl.php');
- // Look for DB-specific tests (testing sql_ helper functions)
- $dbfilename = $CFG->libdir.'/dml/simpletest/test_'.get_class($database).'.php';
- if (file_exists($dbfilename)) {
- $test->addTestFile($dbfilename);
- }
-
// Make the reporter, which is what displays the results.
$reporter = new ExHtmlReporter($showpasses);