Blog.Services.Implementation.Tests.CommentLikesServiceTest.Init C# (CSharp) Method

Init() private method

private Init ( ) : void
return void
        public void Init()
        {
            #region Comment Likes

            _commentLikes = new List<CommentLike>
                     {
                         new CommentLike
                         {
                             CommentLikeId = 1,
                             CommentId = 1,
                             UserId = 1
                         },
                         new CommentLike
                         {
                             CommentLikeId = 2,
                             CommentId = 1,
                             UserId = 2
                         },
                         new CommentLike
                         {
                             CommentLikeId = 3,
                             CommentId = 2,
                             UserId = 1
                         }
                     };

            #endregion
        }