Upgraded drupal core with security updates
[yaffs-website] / web / core / modules / views_ui / src / Tests / UITestBase.php
index 0b90e04d1e7715f8969ea772c7205b568754f589..83f2f85980c42d4824fa618913e5e6cd77878b30 100644 (file)
@@ -6,6 +6,9 @@ use Drupal\views\Tests\ViewTestBase;
 
 /**
  * Provides a base class for testing the Views UI.
+ *
+ * @deprecated in Drupal 8.4.0 and will be removed before Drupal 9.0.x.
+ *   Use \Drupal\Tests\views_ui\Functional\UITestBase.
  */
 abstract class UITestBase extends ViewTestBase {
 
@@ -48,6 +51,8 @@ abstract class UITestBase extends ViewTestBase {
       'administer permissions',
     ]);
     $this->drupalLogin($this->fullAdminUser);
+
+    @trigger_error('\Drupal\views_ui\Tests\UITestBase is deprecated in Drupal 8.4.0 and will be removed before Drupal 9.0.x. Instead, use \Drupal\Tests\views_ui\Functional\UITestBase', E_USER_DEPRECATED);
   }
 
   /**