blob: df6045b075d3f6f387099c9f28672a48c907e4d7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
<?php
declare(strict_types=1);
namespace Drupal\Tests;
use Drupal\TestTools\Extension\DeprecationBridge\ExpectDeprecationTrait;
use PHPUnit\Framework\TestCase;
/**
* Ensures Drupal has test coverage of Symfony's deprecation testing.
*
* @group Test
* @group legacy
*/
class ExpectDeprecationTest extends TestCase {
use ExpectDeprecationTrait;
/**
* Tests expectDeprecation.
*/
public function testExpectDeprecation(): void {
$this->expectDeprecation('Test deprecation');
// phpcs:ignore Drupal.Semantics.FunctionTriggerError
@trigger_error('Test deprecation', E_USER_DEPRECATED);
}
/**
* Tests expectDeprecation in isolated test.
*
* @runInSeparateProcess
* @preserveGlobalState disabled
*/
public function testExpectDeprecationInIsolation(): void {
$this->expectDeprecation('Test isolated deprecation');
// phpcs:ignore Drupal.Semantics.FunctionTriggerError
@trigger_error('Test isolated deprecation', E_USER_DEPRECATED);
}
}
|