You are here

protected function UITestBase::setUp in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/views_ui/src/Tests/UITestBase.php \Drupal\views_ui\Tests\UITestBase::setUp()

Sets up a Drupal site for running functional and integration tests.

Installs Drupal with the installation profile specified in \Drupal\simpletest\WebTestBase::$profile into the prefixed database.

Afterwards, installs any additional modules specified in the static \Drupal\simpletest\WebTestBase::$modules property of each class in the class hierarchy.

After installation all caches are flushed and several configuration values are reset to the values of the parent site executing the test, since the default values may be incompatible with the environment in which tests are being executed.

Overrides ViewTestBase::setUp

11 calls to UITestBase::setUp()
AccessRoleUITest::setUp in core/modules/user/src/Tests/Views/AccessRoleUITest.php
Sets up a Drupal site for running functional and integration tests.
ConfigTranslationViewListUiTest::setUp in core/modules/config_translation/src/Tests/ConfigTranslationViewListUiTest.php
Sets up a Drupal site for running functional and integration tests.
DefaultViewsTest::setUp in core/modules/views_ui/src/Tests/DefaultViewsTest.php
Sets up a Drupal site for running functional and integration tests.
DisplayPathTest::setUp in core/modules/views_ui/src/Tests/DisplayPathTest.php
Sets up a Drupal site for running functional and integration tests.
DuplicateTest::setUp in core/modules/views_ui/src/Tests/DuplicateTest.php
Sets up a Drupal site for running functional and integration tests.

... See full list

11 methods override UITestBase::setUp()
AccessRoleUITest::setUp in core/modules/user/src/Tests/Views/AccessRoleUITest.php
Sets up a Drupal site for running functional and integration tests.
ConfigTranslationViewListUiTest::setUp in core/modules/config_translation/src/Tests/ConfigTranslationViewListUiTest.php
Sets up a Drupal site for running functional and integration tests.
DefaultViewsTest::setUp in core/modules/views_ui/src/Tests/DefaultViewsTest.php
Sets up a Drupal site for running functional and integration tests.
DisplayPathTest::setUp in core/modules/views_ui/src/Tests/DisplayPathTest.php
Sets up a Drupal site for running functional and integration tests.
DuplicateTest::setUp in core/modules/views_ui/src/Tests/DuplicateTest.php
Sets up a Drupal site for running functional and integration tests.

... See full list

File

core/modules/views_ui/src/Tests/UITestBase.php, line 41
Contains \Drupal\views_ui\Tests\UITestBase.

Class

UITestBase
Provides a base class for testing the Views UI.

Namespace

Drupal\views_ui\Tests

Code

protected function setUp() {
  parent::setUp();
  $this
    ->enableViewsTestModule();
  $this->adminUser = $this
    ->drupalCreateUser(array(
    'administer views',
  ));
  $this->fullAdminUser = $this
    ->drupalCreateUser(array(
    'administer views',
    'administer blocks',
    'bypass node access',
    'access user profiles',
    'view all revisions',
    'administer permissions',
  ));
  $this
    ->drupalLogin($this->fullAdminUser);
}