You are here

protected function ConfigLoadTest::setUp in Zoom API 2.0.x

Same name and namespace in other branches
  1. 8 tests/src/Functional/ConfigLoadTest.php \Drupal\Tests\zoomapi\Functional\ConfigLoadTest::setUp()

Overrides BrowserTestBase::setUp

File

tests/src/Functional/ConfigLoadTest.php, line 37

Class

ConfigLoadTest
Simple test to ensure that the config page loads.

Namespace

Drupal\Tests\zoomapi\Functional

Code

protected function setUp() {
  parent::setUp();
  $this->user = $this
    ->drupalCreateUser([
    'administer zoom api',
  ]);
  $this
    ->drupalLogin($this->user);
}