You are here

public function PhpUnitWarningsTest::testAddWarning in Drupal 10

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/PhpUnitWarningsTest.php \Drupal\Tests\PhpUnitWarningsTest::testAddWarning()

Tests that selected PHPUnit warning is converted to deprecation.

File

core/tests/Drupal/Tests/PhpUnitWarningsTest.php, line 14

Class

PhpUnitWarningsTest
@coversDefaultClass \Drupal\Tests\Traits\PhpUnitWarnings @group legacy

Namespace

Drupal\Tests

Code

public function testAddWarning() {
  $this
    ->expectDeprecation('Test warning for \\Drupal\\Tests\\PhpUnitWarningsTest::testAddWarning()');
  $this
    ->addWarning('Test warning for \\Drupal\\Tests\\PhpUnitWarningsTest::testAddWarning()');
}