Exemple #1
0
        public async Task ShouldGet_CommentWithAuthorAsync()
        {
            var comment = await _commentAdminAppService.GetAsync(_cmsKitTestData.CommentWithChildId);

            comment.ShouldNotBeNull();
            comment.Author.ShouldNotBeNull();
        }
Exemple #2
0
 public async Task OnGetAsync()
 {
     CommentWithAuthorDto = await CommentAdminAppService.GetAsync(Id);
 }