You are here

protected function WorkspacesContentModerationStateTest::createContentType in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/content_moderation/tests/src/Kernel/WorkspacesContentModerationStateTest.php \Drupal\Tests\content_moderation\Kernel\WorkspacesContentModerationStateTest::createContentType()

Creates a custom content type based on default settings.

Parameters

array $values: An array of settings to change from the defaults. Example: 'type' => 'foo'.

Return value

\Drupal\node\Entity\NodeType Created content type.

Overrides ContentTypeCreationTrait::createContentType

1 call to WorkspacesContentModerationStateTest::createContentType()
WorkspacesContentModerationStateTest::testContentModerationIntegrationWithWorkspaces in core/modules/content_moderation/tests/src/Kernel/WorkspacesContentModerationStateTest.php
Tests the integration between Content Moderation and Workspaces.

File

core/modules/content_moderation/tests/src/Kernel/WorkspacesContentModerationStateTest.php, line 245

Class

WorkspacesContentModerationStateTest
Tests that Workspaces and Content Moderation work together properly.

Namespace

Drupal\Tests\content_moderation\Kernel

Code

protected function createContentType(array $values = []) {
  $note_type = $this->workspaceManager
    ->executeOutsideWorkspace(function () use ($values) {
    return $this
      ->traitCreateContentType($values);
  });
  return $note_type;
}