You are here

function StringOverridesTestCase::setUp in String Overrides 7

Set up the testing environment.

Overrides DrupalWebTestCase::setUp

File

./stringoverrides.test, line 36
Provides tests for the String Overrides module.

Class

StringOverridesTestCase
Tests the functionality of the Simpletest example content type.

Code

function setUp() {

  // Install the String Overrides module.
  parent::setUp('stringoverrides');

  // Create the user to test on.
  $this->user = $this
    ->drupalCreateUser();
}