You are here

protected function AccessTest::setUp in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/views/src/Tests/Plugin/AccessTest.php \Drupal\views\Tests\Plugin\AccessTest::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

File

core/modules/views/src/Tests/Plugin/AccessTest.php, line 50
Contains \Drupal\views\Tests\Plugin\AccessTest.

Class

AccessTest
Tests pluggable access for views.

Namespace

Drupal\views\Tests\Plugin

Code

protected function setUp() {
  parent::setUp();
  $this
    ->enableViewsTestModule();
  ViewTestData::createTestViews(get_class($this), array(
    'views_test_data',
  ));
  $this->webUser = $this
    ->drupalCreateUser();
  $normal_role = $this
    ->drupalCreateRole(array());
  $this->normalUser = $this
    ->drupalCreateUser(array(
    'views_test_data test permission',
  ));
  $this->normalUser
    ->addRole($normal_role);

  // @todo when all the plugin information is cached make a reset function and
  // call it here.
}