public static function SimpleTestFunctionalTest::getInfo in SimpleTest 7.2
Same name and namespace in other branches
- 6.2 simpletest.test \SimpleTestFunctionalTest::getInfo()
- 7 simpletest.test \SimpleTestFunctionalTest::getInfo()
1 call to SimpleTestFunctionalTest::getInfo()
- SimpleTestFunctionalTest::getResultFieldSet in ./
simpletest.test - Get the fieldset containing the results for group this test is in.
File
- ./
simpletest.test, line 21 - Tests for simpletest.module.
Class
- SimpleTestFunctionalTest
- @file Tests for simpletest.module.
Code
public static function getInfo() {
return array(
'name' => 'Web runner',
'description' => 'Test SimpleTest\'s web interface: check that the intended tests were run and ensure that test reports display the intended results. Also test SimpleTest\'s internal browser and API\'s both explicitly and implicitly.',
'group' => 'SimpleTest',
);
}