ExpectDeprecationTest.php in Drupal 10        
                          
                  
                        
  
  
  
  
File
  core/tests/Drupal/Tests/ExpectDeprecationTest.php
  
    View source  
  <?php
namespace Drupal\Tests;
use PHPUnit\Framework\TestCase;
use Symfony\Bridge\PhpUnit\ExpectDeprecationTrait;
class ExpectDeprecationTest extends TestCase {
  use ExpectDeprecationTrait;
  
  public function testExpectDeprecation() {
    $this
      ->expectDeprecation('Test deprecation');
    @trigger_error('Test deprecation', E_USER_DEPRECATED);
  }
  
  public function testExpectDeprecationInIsolation() {
    $this
      ->expectDeprecation('Test isolated deprecation');
    @trigger_error('Test isolated deprecation', E_USER_DEPRECATED);
  }
}