function VersionNegotiatorTest::testCurrentVersion

Same name and namespace in other branches
  1. 9 core/modules/jsonapi/tests/src/Kernel/Revisions/VersionNegotiatorTest.php \Drupal\Tests\jsonapi\Kernel\Revisions\VersionNegotiatorTest::testCurrentVersion()
  2. 8.9.x core/modules/jsonapi/tests/src/Kernel/Revisions/VersionNegotiatorTest.php \Drupal\Tests\jsonapi\Kernel\Revisions\VersionNegotiatorTest::testCurrentVersion()
  3. 11.x core/modules/jsonapi/tests/src/Kernel/Revisions/VersionNegotiatorTest.php \Drupal\Tests\jsonapi\Kernel\Revisions\VersionNegotiatorTest::testCurrentVersion()

@covers \Drupal\jsonapi\Revisions\VersionByRel::getRevision

File

core/modules/jsonapi/tests/src/Kernel/Revisions/VersionNegotiatorTest.php, line 158

Class

VersionNegotiatorTest
The test class for version negotiators.

Namespace

Drupal\Tests\jsonapi\Kernel\Revisions

Code

public function testCurrentVersion() : void {
  $revision = $this->versionNegotiator
    ->getRevision($this->node, 'rel:' . VersionByRel::WORKING_COPY);
  $this->assertEquals($this->node
    ->id(), $revision->id());
  $this->assertEquals($this->node
    ->id(), $revision->id());
  $this->assertEquals($this->node
    ->getRevisionId(), $revision->getRevisionId());
}

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