diff --git a/core/modules/views/tests/src/Unit/Plugin/area/ViewTest.php b/core/modules/views/tests/src/Unit/Plugin/area/ViewTest.php
new file mode 100644
index 0000000..5783908
--- /dev/null
+++ b/core/modules/views/tests/src/Unit/Plugin/area/ViewTest.php
@@ -0,0 +1,43 @@
+<?php
+
+/**
+ * @file
+ * Contains \Drupal\Tests\views\Unit\Plugin\area\ViewTest.
+ */
+
+namespace Drupal\Tests\views\Unit\Plugin\area;
+
+use Drupal\Tests\UnitTestCase;
+use Drupal\views\Plugin\views\area\View as ViewAreaPlugin;
+use Drupal\views\Entity\View;
+
+/**
+ * @coversDefaultClass \Drupal\views\Plugin\views\area\View
+ * @group views
+ */
+class ViewTest extends UnitTestCase {
+
+  /**
+   * The mocked entity storage.
+   *
+   * @var \Drupal\Core\Entity\EntityStorageInterface|\PHPUnit_Framework_MockObject_MockObject
+   */
+  protected $entityStorage;
+
+  /**
+   * The view handler.
+   *
+   * @var \Drupal\views\Plugin\views\area\View
+   */
+  protected $viewHandler;
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function setUp() {
+    parent::setUp();
+    $this->entityStorage = $this->getMock('Drupal\Core\Entity\EntityStorageInterface');
+    $this->viewHandler = new ViewAreaPlugin(array(), 'view', array(), $this->entityStorage);
+  }
+
+}
