| 1 simpletest.module | simpletest_permission() | 
Implements hook_permission().
File
- core/modules/ simpletest/ simpletest.module, line 46 
- Provides testing functionality.
Code
function simpletest_permission() {
  return array(
    'administer unit tests' => array(
      'title' => t('Administer tests'),
      'restrict access' => TRUE,
      'warning' => t('Tests can use a large amount of CPU resources. Running them can potentially cause performance issues on the site.'),
    ),
  );
}
