protected function DrupalWebTestCase::drupalGetContent in SimpleTest 7
Same name and namespace in other branches
- 6.2 drupal_web_test_case.php \DrupalWebTestCase::drupalGetContent()
- 7.2 drupal_web_test_case.php \DrupalWebTestCase::drupalGetContent()
Gets the current raw HTML of requested page.
10 calls to DrupalWebTestCase::drupalGetContent()
- DatabaseSelectPagerDefaultTestCase::testEvenPagerQuery in tests/
database_test.test - Confirm that a pager query returns the correct results.
- DatabaseSelectPagerDefaultTestCase::testOddPagerQuery in tests/
database_test.test - Confirm that a pager query returns the correct results.
- DatabaseSelectTableSortDefaultTestCase::testTableSortQuery in tests/
database_test.test - Confirm that a tablesort query returns the correct results.
- DatabaseSelectTableSortDefaultTestCase::testTableSortQueryFirst in tests/
database_test.test - Confirm that if a tablesort's orderByHeader is called before another orderBy, that the header happens first.
- DatabaseTemporaryQueryTestCase::testTemporaryQuery in tests/
database_test.test - Confirm that temporary tables work and are limited to one request.
File
- ./
drupal_web_test_case.php, line 1924
Class
- DrupalWebTestCase
- Test case for typical Drupal tests.
Code
protected function drupalGetContent() {
return $this->content;
}