CmsKit - Add Unit Tests for GetWithAuthorAsync

pull/12612/head
Enis Necipoglu 4 years ago
parent 99a6d5bf65
commit 6ef09658f3

@ -54,6 +54,15 @@ public abstract class CommentRepository_Tests<TStartupModule> : CmsKitTestBase<T
list.Any(x => x.Author == null).ShouldBeFalse();
}
[Fact]
public async Task GetWithAuthorAsync()
{
var commentDetail = await _commentRepository.GetWithAuthorAsync(_cmsKitTestData.CommentWithChildId);
commentDetail.ShouldNotBeNull();
commentDetail.Author.ShouldNotBeNull();
}
[Fact]
public async Task DeleteWithRepliesAsync()
{

Loading…
Cancel
Save