
| Current Path : /var/www/html/12park/web/core/modules/system/tests/src/Functional/Module/ |
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/12park/web/core/modules/system/tests/src/Functional/Module/DeprecatedTemplateTest.php |
<?php
declare(strict_types=1);
namespace Drupal\Tests\system\Functional\Module;
use Drupal\Tests\BrowserTestBase;
/**
* Tests that the deprecated template is correctly marked.
*
* @group Theme
*/
class DeprecatedTemplateTest extends BrowserTestBase {
/**
* {@inheritdoc}
*/
protected $defaultTheme = 'stark';
/**
* {@inheritdoc}
*/
protected static $modules = ['deprecated_twig_template'];
/**
* Tests that the deprecated template is marked as deprecated.
*
* @group legacy
*/
public function testDeprecatedTemplate(): void {
$this->expectDeprecation('The "deprecated-template.html.twig" template is deprecated in drupal:X.0.0 and is removed from drupal:Y.0.0. Use another template instead. See https://www.example.com');
$this->drupalGet('/deprecated-twig-template');
}
}