function BlockContentTestBase::setUp

Same name in this branch
  1. 9 core/modules/block_content/tests/src/Functional/Views/BlockContentTestBase.php \Drupal\Tests\block_content\Functional\Views\BlockContentTestBase::setUp()
Same name and namespace in other branches
  1. 8.9.x core/modules/block_content/src/Tests/Views/BlockContentTestBase.php \Drupal\block_content\Tests\Views\BlockContentTestBase::setUp()
  2. 8.9.x core/modules/block_content/src/Tests/BlockContentTestBase.php \Drupal\block_content\Tests\BlockContentTestBase::setUp()
  3. 8.9.x core/modules/block_content/tests/src/Functional/Views/BlockContentTestBase.php \Drupal\Tests\block_content\Functional\Views\BlockContentTestBase::setUp()
  4. 8.9.x core/modules/block_content/tests/src/Functional/BlockContentTestBase.php \Drupal\Tests\block_content\Functional\BlockContentTestBase::setUp()
  5. 10 core/modules/block_content/tests/src/Functional/Views/BlockContentTestBase.php \Drupal\Tests\block_content\Functional\Views\BlockContentTestBase::setUp()
  6. 10 core/modules/block_content/tests/src/Functional/BlockContentTestBase.php \Drupal\Tests\block_content\Functional\BlockContentTestBase::setUp()
  7. 11.x core/modules/block_content/tests/src/Functional/Views/BlockContentTestBase.php \Drupal\Tests\block_content\Functional\Views\BlockContentTestBase::setUp()
  8. 11.x core/modules/block_content/tests/src/Functional/BlockContentTestBase.php \Drupal\Tests\block_content\Functional\BlockContentTestBase::setUp()

Sets the test up.

Overrides BrowserTestBase::setUp

6 calls to BlockContentTestBase::setUp()
BlockContentCreationTest::setUp in core/modules/block_content/tests/src/Functional/BlockContentCreationTest.php
Sets the test up.
BlockContentRevisionsTest::setUp in core/modules/block_content/tests/src/Functional/BlockContentRevisionsTest.php
Sets the test up.
BlockContentSaveTest::setUp in core/modules/block_content/tests/src/Functional/BlockContentSaveTest.php
Sets the test up.
BlockContentTypeTest::setUp in core/modules/block_content/tests/src/Functional/BlockContentTypeTest.php
Sets the test up.
BlockContentWizardTest::setUp in core/modules/block_content/tests/src/Functional/Views/BlockContentWizardTest.php
Sets the test up.

... See full list

6 methods override BlockContentTestBase::setUp()
BlockContentCreationTest::setUp in core/modules/block_content/tests/src/Functional/BlockContentCreationTest.php
Sets the test up.
BlockContentRevisionsTest::setUp in core/modules/block_content/tests/src/Functional/BlockContentRevisionsTest.php
Sets the test up.
BlockContentSaveTest::setUp in core/modules/block_content/tests/src/Functional/BlockContentSaveTest.php
Sets the test up.
BlockContentTypeTest::setUp in core/modules/block_content/tests/src/Functional/BlockContentTypeTest.php
Sets the test up.
BlockContentWizardTest::setUp in core/modules/block_content/tests/src/Functional/Views/BlockContentWizardTest.php
Sets the test up.

... See full list

File

core/modules/block_content/tests/src/Functional/BlockContentTestBase.php, line 54

Class

BlockContentTestBase
Sets up block content types.

Namespace

Drupal\Tests\block_content\Functional

Code

protected function setUp() {
    parent::setUp();
    if ($this->autoCreateBasicBlockType) {
        $this->createBlockContentType('basic', TRUE);
    }
    $this->adminUser = $this->drupalCreateUser($this->permissions);
    $this->drupalPlaceBlock('local_actions_block');
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.