SkippedDeprecationTest.php in Drupal 9
File
core/tests/Drupal/Tests/SkippedDeprecationTest.php
View source
<?php
namespace Drupal\Tests;
class SkippedDeprecationTest extends UnitTestCase {
public function testSkippingDeprecations() {
@trigger_error('\\Drupal\\Tests\\SkippedDeprecationTest deprecation', E_USER_DEPRECATED);
$this
->addToAssertionCount(1);
}
public function testSkippingDeprecationsAgain() {
@trigger_error('\\Drupal\\Tests\\SkippedDeprecationTest deprecation', E_USER_DEPRECATED);
$this
->addToAssertionCount(1);
}
}