WebAssert.php 343 B

12345678910111213141516
  1. <?php
  2. namespace Drupal\simpletest;
  3. use Drupal\Tests\WebAssert as BaseWebAssert;
  4. /**
  5. * Defines a class with methods for asserting presence of elements during tests.
  6. *
  7. * @deprecated in Drupal 8.1.1 will be removed before 9.0.0.
  8. * This was moved to another namespace.
  9. *
  10. * @see \Drupal\Tests
  11. */
  12. class WebAssert extends BaseWebAssert {
  13. }