LegacyStatusReportTest.php

Namespace

Drupal\KernelTests\Core\Render\Element

File

core/tests/Drupal/KernelTests/Core/Render/Element/LegacyStatusReportTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\KernelTests\Core\Render\Element;

use Drupal\Core\Render\Element\StatusReport;
use Drupal\KernelTests\KernelTestBase;
use PHPUnit\Framework\Attributes\Group;
use PHPUnit\Framework\Attributes\IgnoreDeprecations;
use PHPUnit\Framework\Attributes\RunTestsInSeparateProcesses;

/**
 * Tests the status report element legacy methods.
 */
class LegacyStatusReportTest extends KernelTestBase {
  
  /**
   * Tests the getSeverities() method deprecation.
   */
  public function testGetSeveritiesDeprecation() : void {
    $this->expectDeprecation('Calling Drupal\\Core\\Render\\Element\\StatusReport::getSeverities() is deprecated in drupal:11.2.0 and is removed from in drupal:12.0.0. There is no replacement. See https://www.drupal.org/node/3410939');
    $severities = StatusReport::getSeverities();
    $this->assertIsArray($severities);
  }

}

Classes

Title Deprecated Summary
LegacyStatusReportTest Tests the status report element legacy methods.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.