BrowserTestBase.php 791 B

12345678910111213141516171819202122232425
  1. <?php
  2. namespace Drupal\simpletest;
  3. @trigger_error(__NAMESPACE__ . '\BrowserTestBase is deprecated in Drupal 8.1.x, will be removed before Drupal 9.0. Use Drupal\Tests\BrowserTestBase instead.', E_USER_DEPRECATED);
  4. use Drupal\Tests\BrowserTestBase as BaseBrowserTestBase;
  5. /**
  6. * Provides a test case for functional Drupal tests.
  7. *
  8. * Tests extending BrowserTestBase must exist in the
  9. * Drupal\Tests\yourmodule\Functional namespace and live in the
  10. * modules/yourmodule/tests/src/Functional directory.
  11. *
  12. * @ingroup testing
  13. *
  14. * @see \Drupal\simpletest\WebTestBase
  15. * @see \Drupal\Tests\BrowserTestBase
  16. *
  17. * @deprecated in drupal:8.1.0 and is removed from drupal:9.0.0.
  18. * Use Drupal\Tests\BrowserTestBase instead.
  19. */
  20. abstract class BrowserTestBase extends BaseBrowserTestBase {
  21. }