You are here

public function FollowTestCase::setUp in Follow 7.2

Set up the modules and any other

Overrides DrupalWebTestCase::setUp

File

tests/follow.test, line 23
Follow module tests.

Class

FollowTestCase
@file Follow module tests.

Code

public function setUp() {

  // List the modules that should be enabled for this test.
  parent::setUp('follow_test');

  // Create an admin user.
  $this->adminUser = $this
    ->drupalCreateUser(array(
    'administer blocks',
  ));
}