function TaxonomyThemeTestCase::setUp
Overrides DrupalWebTestCase::setUp
File
-
modules/
taxonomy/ taxonomy.test, line 2018
Class
- TaxonomyThemeTestCase
- Tests for verifying that taxonomy pages use the correct theme.
Code
function setUp() {
parent::setUp();
// Make sure we are using distinct default and administrative themes for
// the duration of these tests.
variable_set('theme_default', 'bartik');
variable_set('admin_theme', 'seven');
// Create and log in as a user who has permission to add and edit taxonomy
// terms and view the administrative theme.
$admin_user = $this->drupalCreateUser(array(
'administer taxonomy',
'view the administration theme',
));
$this->drupalLogin($admin_user);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.