X-Git-Url: http://aleph1.co.uk/gitweb/?a=blobdiff_plain;ds=sidebyside;f=web%2Fcore%2Fmodules%2Fcomment%2Fsrc%2FTests%2FViews%2FArgumentUserUIDTest.php;fp=web%2Fcore%2Fmodules%2Fcomment%2Fsrc%2FTests%2FViews%2FArgumentUserUIDTest.php;h=0000000000000000000000000000000000000000;hb=9917807b03b64faf00f6a1f29dcb6eafc454efa5;hp=d3526dc2846572d868eeda4007819fbd5707fad9;hpb=aea91e65e895364e460983b890e295aa5d5540a5;p=yaffs-website diff --git a/web/core/modules/comment/src/Tests/Views/ArgumentUserUIDTest.php b/web/core/modules/comment/src/Tests/Views/ArgumentUserUIDTest.php deleted file mode 100644 index d3526dc28..000000000 --- a/web/core/modules/comment/src/Tests/Views/ArgumentUserUIDTest.php +++ /dev/null @@ -1,51 +0,0 @@ - 'new user']); - $new_user->save(); - - $comment = Comment::create([ - 'uid' => $new_user->uid->value, - 'entity_id' => $this->nodeUserCommented->id(), - 'entity_type' => 'node', - 'field_name' => 'comment', - 'subject' => 'if a woodchuck could chuck wood.', - ]); - $comment->save(); - - $view = Views::getView('test_comment_user_uid'); - $this->executeView($view, [$this->account->id()]); - $result_set = [ - [ - 'nid' => $this->nodeUserPosted->id(), - ], - [ - 'nid' => $this->nodeUserCommented->id(), - ], - ]; - $column_map = ['nid' => 'nid']; - $this->assertIdenticalResultset($view, $result_set, $column_map); - } - -}