hook_test_finished

  1. drupal
    1. 7
Versions
7 hook_test_finished($results)

An individual test has finished.

This hook is called when an individual test has finished.

Parameters

$results The results of the test as gathered by DrupalWebTestCase.

See also

DrupalWebTestCase->results

Related topics

Code

drupal/modules/simpletest/simpletest.api.php, line 55

<?php
function hook_test_finished($results) { }
?>