You are here

public function DrupalMandrillTest::__construct in Mandrill 7.2

Overrides DrupalMandrill::__construct

See also

DrupalMandrill::__construct()

File

tests/includes/mandrill_test.inc, line 19

Class

DrupalMandrillTest

Code

public function __construct($apikey = NULL, $timeout = 60) {
  parent::__construct($apikey, $timeout);

  // Set up test classes.
  $this->messages = new Mandrill_MessagesTest($this);
  $this->senders = new Mandrill_SendersTest($this);
  $this->subaccounts = new Mandrill_SubaccountsTest($this);
  $this->tags = new Mandrill_TagsTest($this);
  $this->templates = new Mandrill_TemplatesTest($this);
  $this->urls = new Mandrill_UrlsTest($this);
  $this->users = new Mandrill_UsersTest($this);
}