You are here

protected function DenyNodePreviewTest::setUp in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/node/tests/src/Unit/PageCache/DenyNodePreviewTest.php \Drupal\Tests\node\Unit\PageCache\DenyNodePreviewTest::setUp()

Overrides UnitTestCase::setUp

File

core/modules/node/tests/src/Unit/PageCache/DenyNodePreviewTest.php, line 45

Class

DenyNodePreviewTest
@coversDefaultClass \Drupal\node\PageCache\DenyNodePreview @group node

Namespace

Drupal\Tests\node\Unit\PageCache

Code

protected function setUp() {
  $this->routeMatch = $this
    ->createMock('Drupal\\Core\\Routing\\RouteMatchInterface');
  $this->policy = new DenyNodePreview($this->routeMatch);
  $this->response = new Response();
  $this->request = new Request();
}