diff --git a/core/modules/aggregator/tests/src/Kernel/Views/AggregatorFeedViewsFieldAccessTest.php b/core/modules/aggregator/tests/src/Kernel/Views/AggregatorFeedViewsFieldAccessTest.php
index d0ca46e..78302f8 100644
--- a/core/modules/aggregator/tests/src/Kernel/Views/AggregatorFeedViewsFieldAccessTest.php
+++ b/core/modules/aggregator/tests/src/Kernel/Views/AggregatorFeedViewsFieldAccessTest.php
@@ -34,14 +34,33 @@ public function testAggregatorFeedFields() {
       'title' => 'Drupal org',
       'url' => 'https://www.drupal.org/rss.xml',
       'link' => 'https://www.drupal.org/rss.xml',
+      'uuid' => 'Universally Unique Identifier',
+      'refresh' => 60,
+      'checked' => 1,
+      'queued' => 0,
+      'description' => 'The description',
+      'image' => 'The image',
+      'hash' => 'The hash',
+      'etag' => 'The etag',
+      'modified' => '285206400',
     ]);
     $feed->save();
 
     // @todo Expand the test coverage in https://www.drupal.org/node/2464635
+    // Still needs coverage for: fid,link
 
-    // $this->assertFieldAccess('aggregator_feed', 'title', $feed->label());
+    $this->assertFieldAccess('aggregator_feed', 'title', $feed->label());
     $this->assertFieldAccess('aggregator_feed', 'langcode', $feed->language()->getName());
     $this->assertFieldAccess('aggregator_feed', 'url', $feed->getUrl());
+    $this->assertFieldAccess('aggregator_feed', 'uuid', $feed->uuid());
+    $this->assertFieldAccess('aggregator_feed', 'refresh', $feed->getRefreshRate());
+    $this->assertFieldAccess('aggregator_feed', 'checked', $feed->getLastCheckedTime());
+    $this->assertFieldAccess('aggregator_feed', 'queued', $feed->getQueuedTime());
+    $this->assertFieldAccess('aggregator_feed', 'description', $feed->getDescription());
+    $this->assertFieldAccess('aggregator_feed', 'image', $feed->getImage());
+    $this->assertFieldAccess('aggregator_feed', 'hash', $feed->getHash());
+    $this->assertFieldAccess('aggregator_feed', 'etag', $feed->getEtag());
+    $this->assertFieldAccess('aggregator_feed', 'modified', '01/15/1979');
   }
 
 }
diff --git a/core/modules/aggregator/tests/src/Kernel/Views/AggregatorItemViewsFieldAccessTest.php b/core/modules/aggregator/tests/src/Kernel/Views/AggregatorItemViewsFieldAccessTest.php
index a095d3c..c85effb 100644
--- a/core/modules/aggregator/tests/src/Kernel/Views/AggregatorItemViewsFieldAccessTest.php
+++ b/core/modules/aggregator/tests/src/Kernel/Views/AggregatorItemViewsFieldAccessTest.php
@@ -45,8 +45,7 @@ public function testAggregatorItemFields() {
 
     $item->save();
 
-    // @todo Expand the test coverage in https://www.drupal.org/node/2464635
-
+    // Still needs coverage for: iid, fid, link, author, timestamp, guid.
     $this->assertFieldAccess('aggregator_item', 'title', $item->getTitle());
     $this->assertFieldAccess('aggregator_item', 'langcode', $item->language()->getName());
     $this->assertFieldAccess('aggregator_item', 'description', $item->getDescription());
diff --git a/core/modules/comment/tests/src/Kernel/Views/CommentViewsFieldAccessTest.php b/core/modules/comment/tests/src/Kernel/Views/CommentViewsFieldAccessTest.php
index 1ca5e43..949bd18 100644
--- a/core/modules/comment/tests/src/Kernel/Views/CommentViewsFieldAccessTest.php
+++ b/core/modules/comment/tests/src/Kernel/Views/CommentViewsFieldAccessTest.php
@@ -47,6 +47,10 @@ public function testCommentFields() {
       'entity_type' => 'entity_test',
       'entity_id' => $host->id(),
       'comment_type' => 'entity_test',
+      'entity_id' => 'entity_test',
+      'hostname' => '127.0.0.1',
+      'thread' => 'entity_test',
+      'field_name' => 'entity_test',
     ]);
     $comment->save();
 
@@ -64,10 +68,12 @@ public function testCommentFields() {
     ]);
     $comment_anonymous->save();
 
-    // @todo Expand the test coverage in https://www.drupal.org/node/2464635
+    // Still needs coverage for: pid,entity_id
 
     $this->assertFieldAccess('comment', 'cid', $comment->id());
     $this->assertFieldAccess('comment', 'cid', $comment_anonymous->id());
+    $this->assertFieldAccess('comment', 'comment_type', $comment->getTypeId());
+    $this->assertFieldAccess('comment', 'langcode', $comment->language()->getName());
     $this->assertFieldAccess('comment', 'uuid', $comment->uuid());
     $this->assertFieldAccess('comment', 'subject', 'My comment title');
     $this->assertFieldAccess('comment', 'subject', 'Anonymous comment title');
@@ -75,9 +81,15 @@ public function testCommentFields() {
     $this->assertFieldAccess('comment', 'mail', 'test@example.com');
     $this->assertFieldAccess('comment', 'homepage', 'https://example.com');
     $this->assertFieldAccess('comment', 'uid', $user->getUsername());
-    // $this->assertFieldAccess('comment', 'created', \Drupal::service('date.formatter')->format(123456));
-    // $this->assertFieldAccess('comment', 'changed', \Drupal::service('date.formatter')->format(REQUEST_TIME));
+    $this->assertFieldAccess('comment', 'created', \Drupal::service('date.formatter')->format(123456));
+    $this->assertFieldAccess('comment', 'changed', \Drupal::service('date.formatter')->format(REQUEST_TIME));
     $this->assertFieldAccess('comment', 'status', 'On');
+    $this->assertFieldAccess('comment', 'status', 'On');
+    //$this->assertFieldAccess('comment', 'hostname', $comment->getHostname());
+    $this->assertFieldAccess('comment', 'thread', $comment->getThread());
+    $this->assertFieldAccess('comment', 'entity_type', $comment->getCommentedEntityTypeId());
+    //$this->assertFieldAccess('comment', 'entity_id', $comment->getCommentedEntityId());
+    $this->assertFieldAccess('comment', 'field_name', $comment->getFieldName());
   }
 
 }
diff --git a/core/modules/file/tests/src/Kernel/Views/FileViewsFieldAccessTest.php b/core/modules/file/tests/src/Kernel/Views/FileViewsFieldAccessTest.php
index 539cb5d..1fa65a4 100644
--- a/core/modules/file/tests/src/Kernel/Views/FileViewsFieldAccessTest.php
+++ b/core/modules/file/tests/src/Kernel/Views/FileViewsFieldAccessTest.php
@@ -52,8 +52,6 @@ public function testFileFields() {
     ]);
     $file->save();
 
-    // @todo Expand the test coverage in https://www.drupal.org/node/2464635
-
     $this->assertFieldAccess('file', 'fid', $file->id());
     $this->assertFieldAccess('file', 'uuid', $file->uuid());
     $this->assertFieldAccess('file', 'langcode', $file->language()->getName());
@@ -63,8 +61,8 @@ public function testFileFields() {
     $this->assertFieldAccess('file', 'filemime', $file->filemime->value);
     $this->assertFieldAccess('file', 'filesize', '4 bytes');
     $this->assertFieldAccess('file', 'status', t('Permanent'));
-    // $this->assertFieldAccess('file', 'created', \Drupal::service('date.formatter')->format(123456));
-    // $this->assertFieldAccess('file', 'changed', \Drupal::service('date.formatter')->format(REQUEST_TIME));
+    $this->assertFieldAccess('file', 'created', \Drupal::service('date.formatter')->format(REQUEST_TIME));
+    $this->assertFieldAccess('file', 'changed', \Drupal::service('date.formatter')->format(REQUEST_TIME));
   }
 
 }
diff --git a/core/modules/node/tests/src/Kernel/Views/NodeViewsFieldAccessTest.php b/core/modules/node/tests/src/Kernel/Views/NodeViewsFieldAccessTest.php
index 7c68e88..9674d80 100644
--- a/core/modules/node/tests/src/Kernel/Views/NodeViewsFieldAccessTest.php
+++ b/core/modules/node/tests/src/Kernel/Views/NodeViewsFieldAccessTest.php
@@ -48,12 +48,14 @@ public function testNodeFields() {
       'promote' => 1,
       'sticky' => 0,
       'created' => 123456,
+      //'revision_timestamp' => 1457760993,
+
     ]);
 
     $node->save();
 
-    // @todo Expand the test coverage in https://www.drupal.org/node/2464635
-
+    // Still needs coverage for: revision_timestamp, revision_uid, revision_log,
+    // revision_translation_affected.
     $this->assertFieldAccess('node', 'nid', $node->id());
     $this->assertFieldAccess('node', 'uuid', $node->uuid());
     $this->assertFieldAccess('node', 'vid', $node->id());
@@ -67,8 +69,10 @@ public function testNodeFields() {
     $this->assertFieldAccess('node', 'promote', 'On');
     $this->assertFieldAccess('node', 'sticky', 'Off');
 
-    // $this->assertFieldAccess('node', 'created', \Drupal::service('date.formatter')->format(123456));
-    // $this->assertFieldAccess('node', 'changed', \Drupal::service('date.formatter')->format(REQUEST_TIME));
+    $this->assertFieldAccess('node', 'created', \Drupal::service('date.formatter')->format(123456));
+    $this->assertFieldAccess('node', 'changed', \Drupal::service('date.formatter')->format(REQUEST_TIME));
+    //$this->assertFieldAccess('node', 'revision_timestamp', $node->getRevisionCreationTime());
+    //$this->assertFieldAccess('node', 'revision_translation_affected', $node->isRevisionTranslationAffected());
   }
 
 }
diff --git a/core/modules/user/tests/src/Kernel/Views/UserViewsFieldAccessTest.php b/core/modules/user/tests/src/Kernel/Views/UserViewsFieldAccessTest.php
index f14779e..c502637 100644
--- a/core/modules/user/tests/src/Kernel/Views/UserViewsFieldAccessTest.php
+++ b/core/modules/user/tests/src/Kernel/Views/UserViewsFieldAccessTest.php
@@ -45,11 +45,16 @@ public function testUserFields() {
       'preferred_admin_langcode' => 'fr',
       'timezone' => 'ut1',
       'created' => 123456,
+      'pass' => 'pass',
+      'access' => 0,  //A value of 0 means the user has never accessed the site
+      'login' => 0, //Last login time
+      'init' => 'entity_test',
+
     ]);
 
     $user->save();
 
-    // @todo Expand the test coverage in https://www.drupal.org/node/2464635
+    // Still needs coverage for:roles.
 
     $this->assertFieldAccess('user', 'uid', $user->id());
     $this->assertFieldAccess('user', 'uuid', $user->uuid());
@@ -57,11 +62,16 @@ public function testUserFields() {
     $this->assertFieldAccess('user', 'preferred_langcode', 'Spanish');
     $this->assertFieldAccess('user', 'preferred_admin_langcode', 'French');
     $this->assertFieldAccess('user', 'name', 'test user');
-    // $this->assertFieldAccess('user', 'mail', 'druplicon@drop.org');
+    $this->assertFieldAccess('user', 'mail', 'druplicon@drop.org');
     $this->assertFieldAccess('user', 'timezone', 'ut1');
     $this->assertFieldAccess('user', 'status', 'On');
-    // $this->assertFieldAccess('user', 'created', \Drupal::service('date.formatter')->format(123456));
-    // $this->assertFieldAccess('user', 'changed', \Drupal::service('date.formatter')->format(REQUEST_TIME));
+    $this->assertFieldAccess('user', 'created', \Drupal::service('date.formatter')->format(123456));
+    $this->assertFieldAccess('user', 'changed', \Drupal::service('date.formatter')->format(REQUEST_TIME));
+    if($user->checkExistingPassword==TRUE)
+     $this->assertFieldAccess('user', 'pass', $user->getPassword());
+   $this->assertFieldAccess('user', 'access', $user->getLastAccessedTime());
+   $this->assertFieldAccess('user', 'login', $user->getLastLoginTime());
+   $this->assertFieldAccess('user', 'init', $user->getInitialEmail());
   }
 
 }
diff --git a/core/modules/views/tests/src/Kernel/Handler/EntityTestViewsFieldAccessTest.php b/core/modules/views/tests/src/Kernel/Handler/EntityTestViewsFieldAccessTest.php
index ee219ab..7b7ca73 100644
--- a/core/modules/views/tests/src/Kernel/Handler/EntityTestViewsFieldAccessTest.php
+++ b/core/modules/views/tests/src/Kernel/Handler/EntityTestViewsFieldAccessTest.php
@@ -31,11 +31,11 @@ public function testEntityTestFields() {
     ]);
     $entity_test->save();
 
-    // @todo Expand the test coverage in https://www.drupal.org/node/2464635
-
+    // Still needs tests for: type, created, user_id.
     $this->assertFieldAccess('entity_test', 'id', $entity_test->id());
     $this->assertFieldAccess('entity_test', 'langcode', $entity_test->language()->getName());
     $this->assertFieldAccess('entity_test', 'name', $entity_test->getName());
+    $this->assertFieldAccess('entity_test', 'uuid', $entity_test->uuid());
   }
 
 }
