BrowserTestBase.php 613 B

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