You are here

function DrupalForumTestCase::setUp in SimpleTest 6

File

tests/forum_module.test, line 11

Class

DrupalForumTestCase

Code

function setUp() {
  parent::setUp();

  // Enable the forum module and its dependencies
  $this
    ->drupalModuleEnable('taxonomy');
  $this
    ->drupalModuleEnable('comment');
  $this
    ->drupalModuleEnable('forum');
}