function ModerationInformationTest::testGetOriginalState

Same name and namespace in other branches
  1. 9 core/modules/content_moderation/tests/src/Kernel/ModerationInformationTest.php \Drupal\Tests\content_moderation\Kernel\ModerationInformationTest::testGetOriginalState()
  2. 8.9.x core/modules/content_moderation/tests/src/Kernel/ModerationInformationTest.php \Drupal\Tests\content_moderation\Kernel\ModerationInformationTest::testGetOriginalState()
  3. 10 core/modules/content_moderation/tests/src/Kernel/ModerationInformationTest.php \Drupal\Tests\content_moderation\Kernel\ModerationInformationTest::testGetOriginalState()

@covers ::getOriginalState

File

core/modules/content_moderation/tests/src/Kernel/ModerationInformationTest.php, line 187

Class

ModerationInformationTest
@coversDefaultClass <a href="/api/drupal/core%21modules%21content_moderation%21src%21ModerationInformation.php/class/ModerationInformation/11.x" title="General service for moderation-related questions about Entity API." class="local">\Drupal\content_moderation\ModerationInformation</a> @group content_moderation

Namespace

Drupal\Tests\content_moderation\Kernel

Code

public function testGetOriginalState() : void {
    $entity = EntityTestMulRevPub::create([
        'moderation_state' => 'published',
    ]);
    $entity->save();
    $entity->moderation_state = 'foo';
    $this->assertEquals('published', $this->moderationInformation
        ->getOriginalState($entity)
        ->id());
}

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