You are here

public function UserFeedsMapperLocationTestCase::setUp in Location Feeds 7

Same name and namespace in other branches
  1. 6 tests/location_feeds.user.test \UserFeedsMapperLocationTestCase::setUp()

Set up the test.

File

tests/location_feeds.user.test, line 25

Class

UserFeedsMapperLocationTestCase

Code

public function setUp() {

  // Call parent setup with required modules.
  parent::setUp(array(
    'location',
    'location_user',
    'location_feeds',
  ));
  $this
    ->drupalLogin($this
    ->drupalCreateUser(array(
    'administer feeds',
    'administer users',
  )));
}