| 1 simpletest.theme.inc | theme_simpletest_result_summary($variables) | 
Returns HTML for the summary status of a simpletest result.
Parameters
$variables: An associative array containing:
- form: A render element representing the form.
Related topics
File
- core/modules/ simpletest/ simpletest.theme.inc, line 117 
- Theme functions for the Simpletest module.
Code
function theme_simpletest_result_summary($variables) {
  $form = $variables['form'];
  return '<div class="simpletest-' . ($form['#ok'] ? 'pass' : 'fail') . '">' . _simpletest_format_summary_line($form) . '</div>';
}
