You are here

function hook_test_finished in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/simpletest/simpletest.api.php \hook_test_finished()

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: \Drupal\simpletest\WebTestBase.

See also

\Drupal\simpletest\WebTestBase->results()

Related topics

1 invocation of hook_test_finished()
_simpletest_batch_operation in core/modules/simpletest/simpletest.module
Implements callback_batch_operation().

File

core/modules/simpletest/simpletest.api.php, line 55
Hooks provided by the SimpleTest module.

Code

function hook_test_finished($results) {
}