protected function ElementsVerticalTabsTest::setUp in Drupal 8
Same name and namespace in other branches
- 9 core/modules/system/tests/src/Functional/Form/ElementsVerticalTabsTest.php \Drupal\Tests\system\Functional\Form\ElementsVerticalTabsTest::setUp()
 
Overrides BrowserTestBase::setUp
File
- core/
modules/ system/ tests/ src/ Functional/ Form/ ElementsVerticalTabsTest.php, line 42  
Class
- ElementsVerticalTabsTest
 - Tests the vertical_tabs form element for expected behavior.
 
Namespace
Drupal\Tests\system\Functional\FormCode
protected function setUp() {
  parent::setUp();
  $this->adminUser = $this
    ->drupalCreateUser([
    'access vertical_tab_test tabs',
  ]);
  $this->webUser = $this
    ->drupalCreateUser();
  $this
    ->drupalLogin($this->adminUser);
}