You are here

function NotificationsLiteTests::setUp in Notifications 6.3

Same name and namespace in other branches
  1. 6.4 tests/notifications_lite.test \NotificationsLiteTests::setUp()
  2. 6.2 tests/notifications_lite.test \NotificationsLiteTests::setUp()
  3. 7 tests/notifications_lite.test \NotificationsLiteTests::setUp()

Generates a random database prefix, runs the install scripts on the prefixed database and enable the specified modules. After installation many caches are flushed and the internal browser is setup so that the page requests will run on the new prefix. A temporary files directory is created with the same name as the database prefix.

Parameters

...: List of modules to enable for the duration of the test. This can be either a single array or a variable number of string arguments.

Overrides DrupalWebTestCase::setUp

File

tests/notifications_lite.test, line 18

Class

NotificationsLiteTests

Code

function setUp() {
  parent::setUp('token', 'autoload', 'messaging', 'messaging_debug', 'messaging_template', 'notifications', 'notifications_lite', 'notifications_digest');

  // Set some defaults
  // Default send interval will be: immediately
  variable_set('notifications_default_send_interval', 0);
  variable_set('notifications_default_send_method', 'debug');

  // Set fake site name for comparison after token replacement
  variable_set('site_name', 'Test Site');
  require_once drupal_get_path('module', 'notifications') . '/notifications.cron.inc';
}