32f59b485cdef3c96767731e5359fc94d286b0e8
[yaffs-website] / web / core / modules / simpletest / src / AssertContentTrait.php
1 <?php
2
3 namespace Drupal\simpletest;
4
5 use Drupal\KernelTests\AssertContentTrait as CoreAssertContentTrait;
6
7 /**
8  * Provides test methods to assert content.
9  *
10  * @deprecated in Drupal 8.6.0, to be removed before Drupal 9.0.0. Use
11  *   Drupal\KernelTests\AssertContentTrait instead.
12  *
13  * @see https://www.drupal.org/node/2943146
14  */
15 trait AssertContentTrait {
16
17   use CoreAssertContentTrait;
18
19 }