You are here

public function EncryptEncryptionMethodPluginsTest::setUp in Encrypt 7.2

Same name and namespace in other branches
  1. 7.3 encrypt.test \EncryptEncryptionMethodPluginsTest::setUp()

Enable encrypt module.

Overrides DrupalWebTestCase::setUp

File

./encrypt.test, line 184
Tests for the project Encrypt.

Class

EncryptEncryptionMethodPluginsTest
Test encryption method hooks.

Code

public function setUp() {
  parent::setUp('encrypt', 'encrypt_test');
  $adminUser = $this
    ->drupalCreateUser(array(
    'administer encrypt',
  ));
  $this
    ->drupalLogin($adminUser);
}