protected function WorkspacesContentModerationStateTest::addEntityTypeAndBundleToWorkflow in Drupal 8
Same name and namespace in other branches
- 9 core/modules/content_moderation/tests/src/Kernel/WorkspacesContentModerationStateTest.php \Drupal\Tests\content_moderation\Kernel\WorkspacesContentModerationStateTest::addEntityTypeAndBundleToWorkflow()
- 10 core/modules/content_moderation/tests/src/Kernel/WorkspacesContentModerationStateTest.php \Drupal\Tests\content_moderation\Kernel\WorkspacesContentModerationStateTest::addEntityTypeAndBundleToWorkflow()
Adds an entity type ID / bundle ID to the given workflow.
Parameters
\Drupal\workflows\WorkflowInterface $workflow: A workflow object.
string $entity_type_id: The entity type ID to add.
string $bundle: The bundle ID to add.
Overrides ContentModerationTestTrait::addEntityTypeAndBundleToWorkflow
1 call to WorkspacesContentModerationStateTest::addEntityTypeAndBundleToWorkflow()
- 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 224
Class
- WorkspacesContentModerationStateTest
- Tests that Workspaces and Content Moderation work together properly.
Namespace
Drupal\Tests\content_moderation\KernelCode
protected function addEntityTypeAndBundleToWorkflow(WorkflowInterface $workflow, $entity_type_id, $bundle) {
$this->workspaceManager
->executeOutsideWorkspace(function () use ($workflow, $entity_type_id, $bundle) {
$this
->traitAddEntityTypeAndBundleToWorkflow($workflow, $entity_type_id, $bundle);
});
}