You are here

function testRelToAbsUnitTestCase::setUp in Relative Path to Absolute URLs 7

Sets up unit test environment.

Unlike DrupalWebTestCase::setUp(), DrupalUnitTestCase::setUp() does not install modules because tests are performed without accessing the database. Any required files must be explicitly included by the child class setUp() method.

Overrides DrupalUnitTestCase::setUp

File

./rel_to_abs.test, line 16
testing coverage for rel_to_abs.module

Class

testRelToAbsUnitTestCase
@file testing coverage for rel_to_abs.module

Code

function setUp() {
  drupal_load('module', 'rel_to_abs');
  parent::setUp();
}