From 5a1d6ec6c574540efaf1d3d6c91179d0f2f5d0ff Mon Sep 17 00:00:00 2001
From: Christoph Burschka <christoph.burschka@pwc-digital.ch>
Date: Tue, 22 Aug 2017 11:33:34 +0200
Subject: [PATCH] shouldbecalled

---
 tests/src/Unit/PageAccessTest.php | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/tests/src/Unit/PageAccessTest.php b/tests/src/Unit/PageAccessTest.php
index f3ce5ed..119477b 100644
--- a/tests/src/Unit/PageAccessTest.php
+++ b/tests/src/Unit/PageAccessTest.php
@@ -84,6 +84,7 @@ class PageAccessTest extends UnitTestCase {
 
     $page->uuid()->shouldBeCalled();
     $page->getEntityTypeId()->shouldBeCalled();
+    $page->id()->shouldBeCalled();
 
     $account = $this->prophesize(AccountInterface::class);
 
@@ -103,6 +104,7 @@ class PageAccessTest extends UnitTestCase {
 
     $page->uuid()->shouldBeCalled();
     $page->getEntityTypeId()->shouldBeCalled();
+    $page->id()->shouldBeCalled();
 
     $account = $this->prophesize(AccountInterface::class);
 
@@ -123,6 +125,7 @@ class PageAccessTest extends UnitTestCase {
 
     $page->uuid()->shouldBeCalled();
     $page->getEntityTypeId()->shouldBeCalled();
+    $page->id()->shouldBeCalled();
 
     // Ensure that the cache tag is added for the temporary conditions.
     if ($is_new) {
-- 
2.14.1

