function ModuleTest::assertInstanceHandler

Ensure that a certain handler is a 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->assertEqual($field_data['id'], $handler->getPluginId());
}

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