function BoxesTestCase::setUp in Boxes 6
Same name and namespace in other branches
- 7 tests/boxes.test \BoxesTestCase::setUp()
Implementation of setUp().
Overrides DrupalWebTestCase::setUp
File
- tests/
boxes.test, line 18
Class
Code
function setUp() {
parent::setUp('ctools', 'boxes');
// Create and login user
$admin_user = $this
->drupalCreateUser(array(
'administer blocks',
));
$this
->drupalLogin($admin_user);
}