You are here

protected function RngWebTestBase::setUp in RNG - Events and Registrations 8

Same name and namespace in other branches
  1. 8.2 src/Tests/RngWebTestBase.php \Drupal\rng\Tests\RngWebTestBase::setUp()
  2. 3.x src/Tests/RngWebTestBase.php \Drupal\rng\Tests\RngWebTestBase::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 WebTestBase::setUp

6 calls to RngWebTestBase::setUp()
RngEventAccessTest::setUp in src/Tests/RngEventAccessTest.php
Sets up a Drupal site for running functional and integration tests.
RngEventTypeAccessDefaultsTest::setUp in src/Tests/RngEventTypeAccessDefaultsTest.php
Sets up a Drupal site for running functional and integration tests.
RngEventTypeMappingFormTest::setUp in src/Tests/RngEventTypeMappingFormTest.php
Sets up a Drupal site for running functional and integration tests.
RngEventTypeTest::setUp in src/Tests/RngEventTypeTest.php
Sets up a Drupal site for running functional and integration tests.
RngRegistrantRouteTest::setUp in src/Tests/RngRegistrantRouteTest.php
Sets up a Drupal site for running functional and integration tests.

... See full list

6 methods override RngWebTestBase::setUp()
RngEventAccessTest::setUp in src/Tests/RngEventAccessTest.php
Sets up a Drupal site for running functional and integration tests.
RngEventTypeAccessDefaultsTest::setUp in src/Tests/RngEventTypeAccessDefaultsTest.php
Sets up a Drupal site for running functional and integration tests.
RngEventTypeMappingFormTest::setUp in src/Tests/RngEventTypeMappingFormTest.php
Sets up a Drupal site for running functional and integration tests.
RngEventTypeTest::setUp in src/Tests/RngEventTypeTest.php
Sets up a Drupal site for running functional and integration tests.
RngRegistrantRouteTest::setUp in src/Tests/RngRegistrantRouteTest.php
Sets up a Drupal site for running functional and integration tests.

... See full list

File

src/Tests/RngWebTestBase.php, line 32

Class

RngWebTestBase
Sets up page and article content types.

Namespace

Drupal\rng\Tests

Code

protected function setUp() {
  parent::setUp();
  $this->eventManager = $this->container
    ->get('rng.event_manager');
}