AssertContentTrait.php 393 B

12345678910111213141516171819
  1. <?php
  2. namespace Drupal\simpletest;
  3. use Drupal\KernelTests\AssertContentTrait as CoreAssertContentTrait;
  4. /**
  5. * Provides test methods to assert content.
  6. *
  7. * @deprecated in Drupal 8.6.0, to be removed before Drupal 9.0.0. Use
  8. * Drupal\KernelTests\AssertContentTrait instead.
  9. *
  10. * @see https://www.drupal.org/node/2943146
  11. */
  12. trait AssertContentTrait {
  13. use CoreAssertContentTrait;
  14. }