You are here

protected function MimeMailUnitTestCase::setUp in Mime Mail 7

Sets up unit test environment.

Unlike DrupalWebTestCase::setUp(), DrupalUnitTestCase::setUp() does not install modules because tests are performed without accessing the database. Any required files must be explicitly included by the child class setUp() method.

Overrides DrupalUnitTestCase::setUp

File

tests/mimemail.test, line 25

Class

MimeMailUnitTestCase
Tests helper functions from the Mime Mail module.

Code

protected function setUp() {
  drupal_load('module', 'mimemail');
  parent::setUp();
}