This example demonstrates how to implement simpletest tests.

This module creates a new "SimpleTest Example Node Type" content type we can test.

See also Testing Framework.

Parent topics

File

modules/examples/simpletest_example/simpletest_example.module, line 7
Hook implementations for the SimpleTest Example module.

Functions

Namesort descending Location Description
simpletest_example_empty_mysql_date modules/examples/simpletest_example/simpletest_example.module A simple self-contained function used to demonstrate unit tests.
simpletest_example_form modules/examples/simpletest_example/simpletest_example.module Implements hook_form().
simpletest_example_install modules/examples/simpletest_example/simpletest_example.install Implements hook_install().
simpletest_example_menu modules/examples/simpletest_example/simpletest_example.module Implements hook_menu().
simpletest_example_node_access modules/examples/simpletest_example/simpletest_example.module Implements hook_node_access().
simpletest_example_permission modules/examples/simpletest_example/simpletest_example.module Implements hook_permission().
simpletest_example_test_node_view modules/examples/simpletest_example/tests/simpletest_example_test/simpletest_example_test.module Implements hook_node_view().
_simpletest_example_explanation modules/examples/simpletest_example/simpletest_example.module Returns an explanation of this module.

Classes

Namesort descending Location Description
SimpleTestExampleMockModuleTestCase modules/examples/simpletest_example/tests/simpletest_example.test SimpleTestExampleMockModuleTestCase allows us to demonstrate how you can use a mock module to aid in functional testing in Backdrop.
SimpleTestExampleTestCase modules/examples/simpletest_example/tests/simpletest_example.test The SimpleTestExampleTestCase is a functional test case, meaning that it actually exercises a particular sequence of actions through the web UI. The majority of core test cases are done this way, but the SimpleTest suite also provides unit tests as…
SimpleTestUnitTestExampleTestCase modules/examples/simpletest_example/tests/simpletest_example.test Although most core test cases are based on BackdropWebTestCase and are functional tests (exercising the web UI) we also have BackdropUnitTestCase, which executes much faster because a Backdrop install does not have to be one. No environment is…