domain_simpletest()Implement hook_simpletest()
./domain.module, line 2451
<?php
function domain_simpletest() {
$module_name = 'domain';
$dir = drupal_get_path('module', $module_name) .'/tests';
$tests = file_scan_directory($dir, '\.test$');
return array_keys($tests);
}
?>