| 1234567891011121314151617 |
- namespace Diligent.WebAPI.Tests.Controllers
- {
- public class CommentsControllerTests
- {
- private ICommentService _commentService = Substitute.For<ICommentService>();
- public CommentsControllerTests()
- {
-
- }
-
- //[Fact]
- //public async AddComment_ShouldReturn_200_Created_Always()
- //{
- // _commentService.Add
- //}
- }
- }
|