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