annotate core/modules/simpletest/src/AssertContentTrait.php @ 17:129ea1e6d783

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