public function AjaxLoaderTestCase::setUp in Ajax loader 7
@inheritdoc.
Overrides DrupalWebTestCase::setUp
File
- ./
ajax_loader.test, line 25 - Test class to ensure proper working of module.
Class
- AjaxLoaderTestCase
- @file Test class to ensure proper working of module.
Code
public function setUp() {
parent::setUp(array(
'ajax_loader',
'ajax_loader_test',
));
$this->permissions = array(
'administer ajax loader',
);
$this->user = $this
->drupalCreateUser($this->permissions);
}