Mercurial > hg > cmmr2012-drupal-site
annotate core/modules/simpletest/src/AssertContentTrait.php @ 4:a9cd425dd02b
Update, including to Drupal core 8.6.10
author | Chris Cannam |
---|---|
date | Thu, 28 Feb 2019 13:11:55 +0000 |
parents | c75dbcec494b |
children |
rev | line source |
---|---|
Chris@0 | 1 <?php |
Chris@0 | 2 |
Chris@0 | 3 namespace Drupal\simpletest; |
Chris@0 | 4 |
Chris@4 | 5 use Drupal\KernelTests\AssertContentTrait as CoreAssertContentTrait; |
Chris@0 | 6 |
Chris@0 | 7 /** |
Chris@0 | 8 * Provides test methods to assert content. |
Chris@4 | 9 * |
Chris@4 | 10 * @deprecated in Drupal 8.6.0, to be removed before Drupal 9.0.0. Use |
Chris@4 | 11 * Drupal\KernelTests\AssertContentTrait instead. |
Chris@4 | 12 * |
Chris@4 | 13 * @see https://www.drupal.org/node/2943146 |
Chris@0 | 14 */ |
Chris@0 | 15 trait AssertContentTrait { |
Chris@0 | 16 |
Chris@4 | 17 use CoreAssertContentTrait; |
Chris@0 | 18 |
Chris@0 | 19 } |