You are here

public function EntityTestViewsFieldAccessTest::testEntityTestFields in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/views/tests/src/Kernel/Handler/EntityTestViewsFieldAccessTest.php \Drupal\Tests\views\Kernel\Handler\EntityTestViewsFieldAccessTest::testEntityTestFields()
  2. 9 core/modules/views/tests/src/Kernel/Handler/EntityTestViewsFieldAccessTest.php \Drupal\Tests\views\Kernel\Handler\EntityTestViewsFieldAccessTest::testEntityTestFields()

File

core/modules/views/tests/src/Kernel/Handler/EntityTestViewsFieldAccessTest.php, line 28

Class

EntityTestViewsFieldAccessTest
Tests base field access in Views for the entity_test entity.

Namespace

Drupal\Tests\views\Kernel\Handler

Code

public function testEntityTestFields() {
  $entity_test = EntityTest::create([
    'name' => 'test entity name',
  ]);
  $entity_test
    ->save();

  // @todo Expand the test coverage in https://www.drupal.org/node/2464635
  $this
    ->assertFieldAccess('entity_test', 'id', $entity_test
    ->id());
  $this
    ->assertFieldAccess('entity_test', 'langcode', $entity_test
    ->language()
    ->getName());
  $this
    ->assertFieldAccess('entity_test', 'name', $entity_test
    ->getName());
}