You are here

public function ModuleTest::assertInstanceHandler in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/views/tests/src/Kernel/ModuleTest.php \Drupal\Tests\views\Kernel\ModuleTest::assertInstanceHandler()
  2. 10 core/modules/views/tests/src/Kernel/ModuleTest.php \Drupal\Tests\views\Kernel\ModuleTest::assertInstanceHandler()

Ensure that a certain handler is an instance of a certain table/field.

1 call to ModuleTest::assertInstanceHandler()
ModuleTest::testViewsGetHandler in core/modules/views/tests/src/Kernel/ModuleTest.php
Tests the ViewsHandlerManager::getHandler() method.

File

core/modules/views/tests/src/Kernel/ModuleTest.php, line 339

Class

ModuleTest
Tests basic functions from the Views module.

Namespace

Drupal\Tests\views\Kernel

Code

public function assertInstanceHandler($handler, $table, $field, $id) {
  $table_data = $this->container
    ->get('views.views_data')
    ->get($table);
  $field_data = $table_data[$field][$id];
  $this
    ->assertEquals($handler
    ->getPluginId(), $field_data['id']);
}