function DrupalTestCase::drupalGetContent in SimpleTest 6
Same name and namespace in other branches
- 5 drupal_test_case.php \DrupalTestCase::drupalGetContent()
@TODO: needs documentation
7 calls to DrupalTestCase::drupalGetContent()
- BlogAPIModuleTestCase::test_blog_API in tests/
blogapi_module.test - CommentModuleTestCase::comment_contact_info_available in tests/
comment_module.test - Check for contact info.
- CommentModuleTestCase::comment_exists in tests/
comment_module.test - Checks current pag for specified comment.
- CommentModuleTestCase::get_unaproved_comment in tests/
comment_module.test - Get the comment id for an unaproved comment.
- TaxonomyTestNodeApi::testTaxonomyNode in tests/
taxonomy.module.test
File
- ./
drupal_test_case.php, line 248
Class
- DrupalTestCase
- Test case for typical Drupal tests. Extends WebTestCase for comfortable browser usage but also implements all UnitTestCase methods, I wish WebTestCase would do this.
Code
function drupalGetContent() {
return $this->_content;
}