You are here

function _simpletest_example_explanation in Examples for Developers 6

Same name and namespace in other branches
  1. 7 simpletest_example/simpletest_example.module \_simpletest_example_explanation()

Page to explain this example.

Related topics

1 string reference to '_simpletest_example_explanation'
simpletest_example_menu in simpletest_example/simpletest_example.module
Implementation of hook_menu().

File

simpletest_example/simpletest_example.module, line 108
An example of simpletest tests to accompany the tutorial at http://drupal.org/node/395012.

Code

function _simpletest_example_explanation() {
  $explanation = t("This SimpleTest Example is designed to give an introductory tutorial to writing a SimpleTest test. Please see the <a href='http://drupal.org/node/395012'>associated tutorial</a>.");
  return $explanation;
}