You are here

public function EntityConverterLatestRevisionTest::testConvertNonRevisionableEntityType in Drupal 8

Same name and namespace in other branches
  1. 9 core/tests/Drupal/KernelTests/Core/ParamConverter/EntityConverterLatestRevisionTest.php \Drupal\KernelTests\Core\ParamConverter\EntityConverterLatestRevisionTest::testConvertNonRevisionableEntityType()

Test the latest revision flag and non-revisionable entities.

File

core/tests/Drupal/KernelTests/Core/ParamConverter/EntityConverterLatestRevisionTest.php, line 180

Class

EntityConverterLatestRevisionTest
Tests the entity converter when the "load_latest_revision" flag is set.

Namespace

Drupal\KernelTests\Core\ParamConverter

Code

public function testConvertNonRevisionableEntityType() {
  $entity = EntityTest::create();
  $entity
    ->save();
  $converted = $this->converter
    ->convert(1, [
    'load_latest_revision' => TRUE,
    'type' => 'entity:entity_test',
  ], 'foo', []);
  $this
    ->assertEquals($entity
    ->id(), $converted
    ->id());
}