You are here

public function GetFilenameTest::testDrupalGetPath in Drupal 9

Tests drupal_get_path() deprecation.

File

core/tests/Drupal/KernelTests/Core/Bootstrap/GetFilenameTest.php, line 31

Class

GetFilenameTest
Tests that drupal_get_filename() works correctly.

Namespace

Drupal\KernelTests\Core\Bootstrap

Code

public function testDrupalGetPath() : void {
  $this
    ->expectDeprecation('drupal_get_path() is deprecated in drupal:9.3.0 and is removed from drupal:10.0.0. Use \\Drupal\\Core\\Extension\\ExtensionPathResolver::getPath() instead. See https://www.drupal.org/node/2940438');
  $this
    ->expectDeprecation('drupal_get_filename() is deprecated in drupal:9.3.0 and is removed from drupal:10.0.0. Use \\Drupal\\Core\\Extension\\ExtensionPathResolver::getPathname() instead. See https://www.drupal.org/node/2940438');
  $this
    ->assertEquals('core/modules/system', drupal_get_path('module', 'system'));
}