annotate core/modules/simpletest/src/AssertContentTrait.php @ 19:fa3358dc1485 tip

Add ndrum files
author Chris Cannam
date Wed, 28 Aug 2019 13:14:47 +0100
parents 129ea1e6d783
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 }