function LegacyFunctionsTest::testArchiverGetExtensions

@expectedDeprecation archiver_get_extensions() is deprecated in Drupal 8.8.0 and will be removed in Drupal 9.0.0. Use \Drupal\Core\Archiver\ArchiverManager::getExtensions() instead. See https://www.drupal.org/node/2999951

File

core/tests/Drupal/KernelTests/Core/Common/LegacyFunctionsTest.php, line 37

Class

LegacyFunctionsTest
Tests legacy functions in <a href="/api/drupal/core%21includes%21common.inc/8.9.x" title="Common functions that many Drupal modules will need to reference." class="local">common.inc</a>.

Namespace

Drupal\KernelTests\Core\Common

Code

public function testArchiverGetExtensions() {
    $expected = \Drupal::service('plugin.manager.archiver')->getExtensions();
    $this->assertEquals($expected, archiver_get_extensions());
}

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