function ViewsConfigUpdaterTest::testNeedsFieldNamesForMultivalueBaseUpdateFieldsDeprecation

@covers ::needsMultivalueBaseFieldUpdate

File

core/modules/views/tests/src/Kernel/ViewsConfigUpdaterTest.php, line 143

Class

ViewsConfigUpdaterTest
@coversDefaultClass <a href="/api/drupal/core%21modules%21views%21src%21ViewsConfigUpdater.php/class/ViewsConfigUpdater/9" title="Provides a BC layer for modules providing old configurations." class="local">\Drupal\views\ViewsConfigUpdater</a>

Namespace

Drupal\Tests\views\Kernel

Code

public function testNeedsFieldNamesForMultivalueBaseUpdateFieldsDeprecation() {
    $this->expectDeprecation('The multivalue base field update for the "test_user_multi_value" view is deprecated in drupal:9.0.0 and is removed from drupal:10.0.0. Module-provided Views configuration should be updated to accommodate the changes described at https://www.drupal.org/node/2900684.');
    $test_view = $this->loadTestView('views.view.test_user_multi_value');
    $needs_update = $this->configUpdater
        ->needsMultivalueBaseFieldUpdate($test_view);
    $this->assertTrue($needs_update);
}

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