
| Current Path : /var/www/html/strat/web/core/tests/Drupal/KernelTests/Core/Test/ |
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/strat/web/core/tests/Drupal/KernelTests/Core/Test/PhpUnitBridgeTest.php |
<?php
declare(strict_types=1);
namespace Drupal\KernelTests\Core\Test;
use Drupal\KernelTests\KernelTestBase;
use Drupal\deprecation_test\Deprecation\FixtureDeprecatedClass;
/**
* Test how kernel tests interact with deprecation errors.
*
* @group Test
* @group legacy
*/
class PhpUnitBridgeTest extends KernelTestBase {
/**
* {@inheritdoc}
*/
protected static $modules = ['deprecation_test'];
public function testDeprecatedClass(): void {
$this->expectDeprecation('Drupal\deprecation_test\Deprecation\FixtureDeprecatedClass is deprecated.');
$deprecated = new FixtureDeprecatedClass();
$this->assertEquals('test', $deprecated->testFunction());
}
public function testDeprecatedFunction(): void {
$this->expectDeprecation('This is the deprecation message for deprecation_test_function().');
$this->assertEquals('known_return_value', \deprecation_test_function());
}
}