public function VersionNegotiatorTest::testCurrentVersion in JSON:API 8.2
@covers \Drupal\jsonapi\Revisions\VersionByRel::getRevision
File
- tests/src/ Kernel/ Revisions/ VersionNegotiatorTest.php, line 153 
Class
- VersionNegotiatorTest
- The test class for version negotiators.
Namespace
Drupal\Tests\jsonapi\Kernel\RevisionsCode
public function testCurrentVersion() {
  $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());
}