You are here

public function ModerationStateFieldItemListTest::moderatedEntityWithExistingIdTestCases in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/content_moderation/tests/src/Kernel/ModerationStateFieldItemListTest.php \Drupal\Tests\content_moderation\Kernel\ModerationStateFieldItemListTest::moderatedEntityWithExistingIdTestCases()
  2. 10 core/modules/content_moderation/tests/src/Kernel/ModerationStateFieldItemListTest.php \Drupal\Tests\content_moderation\Kernel\ModerationStateFieldItemListTest::moderatedEntityWithExistingIdTestCases()

Test cases for ::testModeratedEntityWithExistingId.

File

core/modules/content_moderation/tests/src/Kernel/ModerationStateFieldItemListTest.php, line 328

Class

ModerationStateFieldItemListTest
@coversDefaultClass \Drupal\content_moderation\Plugin\Field\ModerationStateFieldItemList

Namespace

Drupal\Tests\content_moderation\Kernel

Code

public function moderatedEntityWithExistingIdTestCases() {
  return [
    'Draft non-default state' => [
      'draft',
    ],
    'Published default state' => [
      'published',
    ],
  ];
}