You are here

public function TagadelicTaxonomyAdminWebTestCase::setUp in Tagadelic 7.2

@scope public @returns Type Description of return value

Overrides DrupalWebTestCase::setUp

File

tests/tagadelic_taxonomy.admin.test, line 23

Class

TagadelicTaxonomyAdminWebTestCase

Code

public function setUp() {
  parent::setUp(array(
    'tagadelic_taxonomy',
  ));
  $this
    ->deleteVocabularies();
  $web_user = $this
    ->drupalCreateUser(array(
    "administer site configuration",
  ));
  $this
    ->drupalLogin($web_user);
}