
| Current Path : /var/www/html/pallets_old/pallets/web/core/tests/Drupal/KernelTests/Core/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/pallets_old/pallets/web/core/tests/Drupal/KernelTests/Core/LegacyServiceTest.php |
<?php
namespace Drupal\KernelTests\Core;
use Drupal\KernelTests\KernelTestBase;
/**
* Tests deprecated core services.
*
* @group Core
* @group legacy
*/
class LegacyServiceTest extends KernelTestBase {
/**
* Tests the site.path service.
*/
public function testSitePath() {
$this->expectDeprecation('The "site.path" service is deprecated in drupal:9.0.0 and is removed from drupal:10.0.0. Use the site.path parameter instead. See https://www.drupal.org/node/3080612');
$this->expectDeprecation('The "site.path.factory" service is deprecated in drupal:9.0.0 and is removed from drupal:10.0.0. Use the site.path parameter instead. See https://www.drupal.org/node/3080612');
$this->assertSame($this->container->get('site.path'), (string) $this->container->getParameter('site.path'));
}
/**
* Tests the app.root service.
*/
public function testAppRoot() {
$this->expectDeprecation('The "app.root" service is deprecated in drupal:9.0.0 and is removed from drupal:10.0.0. Use the app.root parameter instead. See https://www.drupal.org/node/3080612');
$this->expectDeprecation('The "app.root.factory" service is deprecated in drupal:9.0.0 and is removed from drupal:10.0.0. Use the app.root parameter instead. See https://www.drupal.org/node/3080612');
$this->assertSame($this->container->get('app.root'), (string) $this->container->getParameter('app.root'));
}
}