
| Current Path : /var/www/html/stolberg/web/core/tests/Drupal/KernelTests/Core/Asset/ |
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/stolberg/web/core/tests/Drupal/KernelTests/Core/Asset/LegacyAssetTest.php |
<?php
declare(strict_types=1);
namespace Drupal\KernelTests\Core\Asset;
use Drupal\KernelTests\KernelTestBase;
/**
* Tests deprecated asset functions.
*
* @group Asset
* @group legacy
*/
class LegacyAssetTest extends KernelTestBase {
/**
* Tests the deprecation.
*/
public function testDeprecatedDrupalFlushCssJs(): void {
$this->expectDeprecation('_drupal_flush_css_js is deprecated in drupal:10.2.0 and is removed from drupal:11.0.0. Use \Drupal\Core\Asset\AssetQueryStringInterface::reset() instead. See https://www.drupal.org/node/3358337');
_drupal_flush_css_js();
}
}