function ViewsDataTest::testGetEmptyKey

Same name in other branches
  1. 10 core/modules/views/tests/src/Unit/ViewsDataTest.php \Drupal\Tests\views\Unit\ViewsDataTest::testGetEmptyKey()
  2. 11.x core/modules/views/tests/src/Unit/ViewsDataTest.php \Drupal\Tests\views\Unit\ViewsDataTest::testGetEmptyKey()

Tests that getting data with an empty key throws an exception.

@covers ::get @dataProvider providerTestGetEmptyKey

File

core/modules/views/tests/src/Unit/ViewsDataTest.php, line 622

Class

ViewsDataTest
@coversDefaultClass \Drupal\views\ViewsData @group views

Namespace

Drupal\Tests\views\Unit

Code

public function testGetEmptyKey($key) {
    $this->expectException(\InvalidArgumentException::class);
    $this->expectExceptionMessage('A valid cache entry key is required. Use getAll() to get all table data.');
    $this->viewsData
        ->get($key);
}

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