You are here

SkippedDeprecationTest.php in Drupal 9

Same filename and directory in other branches
  1. 8 core/tests/Drupal/Tests/SkippedDeprecationTest.php

Namespace

Drupal\Tests

File

core/tests/Drupal/Tests/SkippedDeprecationTest.php
View source
<?php

namespace Drupal\Tests;


/**
 * @group Test
 */
class SkippedDeprecationTest extends UnitTestCase {

  /**
   * Tests skipping deprecations in unit tests.
   *
   * @see \Drupal\Tests\Listeners\DeprecationListenerTrait::getSkippedDeprecations()
   */
  public function testSkippingDeprecations() {
    @trigger_error('\\Drupal\\Tests\\SkippedDeprecationTest deprecation', E_USER_DEPRECATED);
    $this
      ->addToAssertionCount(1);
  }

  /**
   * Tests skipping deprecations in unit tests multiple times.
   *
   * @see \Drupal\Tests\Listeners\DeprecationListenerTrait::getSkippedDeprecations()
   */
  public function testSkippingDeprecationsAgain() {
    @trigger_error('\\Drupal\\Tests\\SkippedDeprecationTest deprecation', E_USER_DEPRECATED);
    $this
      ->addToAssertionCount(1);
  }

}

Classes

Namesort descending Description
SkippedDeprecationTest @group Test