function SecurePagesTestCase::testSecurePages in Secure Pages 8
Same name and namespace in other branches
- 6.2 securepages.test \SecurePagesTestCase::testSecurePages()
 - 6 securepages.test \SecurePagesTestCase::testSecurePages()
 - 7 securepages.test \SecurePagesTestCase::testSecurePages()
 
Runs all the test functions. These are run from a single outer function to avoid multiple re-installs by simpletest.
File
- ./
securepages.test, line 27  - Provides SimpleTests for Secure Pages module.
 
Class
- SecurePagesTestCase
 - @file Provides SimpleTests for Secure Pages module.
 
Code
function testSecurePages() {
  $this
    ->_testSettingsForm();
  $this
    ->_testMatch();
  $this
    ->_testLocale();
  $this
    ->_testAnonymous();
  $this
    ->_testFormAlter();
  $this
    ->_testCachedResponse();
  $this
    ->_testPathAlias();
  $this
    ->_testOpenRedirect();
  $this
    ->_testXHR();
  $this
    ->_testRoles();
  $this
    ->_testPathNorms();
}