1.20.x simpletest.pages.inc simpletest_result_get($test_id)

Get test results for $test_id.

Parameters

$test_id The test_id to retrieve results of.:

Return value

Array of results grouped by test_class.:

File

modules/simpletest/simpletest.pages.inc, line 244
Page callbacks for simpletest module.

Code

function simpletest_result_get($test_id) {
  $results = db_select('simpletest')
    ->fields('simpletest')
    ->condition('test_id', $test_id)
    ->orderBy('test_class')
    ->orderBy('message_id')
    ->execute();

  $test_results = array();
  foreach ($results as $result) {
    if (!isset($test_results[$result->test_class])) {
      $test_results[$result->test_class] = array();
    }
    $test_results[$result->test_class][] = $result;
  }
  return $test_results;
}