You are here

protected function BlockContentTranslationUITest::setupBundle in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/block_content/tests/src/Functional/BlockContentTranslationUITest.php \Drupal\Tests\block_content\Functional\BlockContentTranslationUITest::setupBundle()

Creates or initializes the bundle date if needed.

Overrides ContentTranslationTestBase::setupBundle

File

core/modules/block_content/tests/src/Functional/BlockContentTranslationUITest.php, line 63

Class

BlockContentTranslationUITest
Tests the block content translation UI.

Namespace

Drupal\Tests\block_content\Functional

Code

protected function setupBundle() {

  // Create the basic bundle since it is provided by standard.
  $bundle = BlockContentType::create([
    'id' => $this->bundle,
    'label' => $this->bundle,
    'revision' => FALSE,
  ]);
  $bundle
    ->save();
}