Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / core / modules / user / src / Tests / Views / ArgumentDefaultTest.php
diff --git a/web/core/modules/user/src/Tests/Views/ArgumentDefaultTest.php b/web/core/modules/user/src/Tests/Views/ArgumentDefaultTest.php
deleted file mode 100644 (file)
index 7db3237..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-<?php
-
-namespace Drupal\user\Tests\Views;
-
-use Drupal\views\Views;
-
-/**
- * Tests views user argument default plugin.
- *
- * @group user
- */
-class ArgumentDefaultTest extends UserTestBase {
-
-  /**
-   * Views used by this test.
-   *
-   * @var array
-   */
-  public static $testViews = ['test_plugin_argument_default_current_user'];
-
-  public function test_plugin_argument_default_current_user() {
-    // Create a user to test.
-    $account = $this->drupalCreateUser();
-
-    // Switch the user.
-    \Drupal::service('account_switcher')->switchTo($account);
-
-    $view = Views::getView('test_plugin_argument_default_current_user');
-    $view->initHandlers();
-
-    $this->assertEqual($view->argument['null']->getDefaultArgument(), $account->id(), 'Uid of the current user is used.');
-    // Switch back.
-    \Drupal::service('account_switcher')->switchBack();
-  }
-
-}