You are here

function SecureSiteTest::setUp in Secure Site 5

Same name and namespace in other branches
  1. 6 tests/securesite.test \SecureSiteTest::setUp()
1 call to SecureSiteTest::setUp()
SecureSiteCacheTest::setUp in tests/securesite.test
1 method overrides SecureSiteTest::setUp()
SecureSiteCacheTest::setUp in tests/securesite.test

File

tests/securesite.test, line 28
Secure Site module unit tests

Class

SecureSiteTest
Unit tests for the Secure Site module

Code

function setUp() {

  // Disable cache
  $this
    ->drupalVariableSet('cache', CACHE_DISABLED);

  // Always call the setUp() function from the parent class
  parent::setUp();
}