You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CommentsControllerTests.cs 395B

1234567891011121314151617
  1. namespace Diligent.WebAPI.Tests.Controllers
  2. {
  3. public class CommentsControllerTests
  4. {
  5. private ICommentService _commentService = Substitute.For<ICommentService>();
  6. public CommentsControllerTests()
  7. {
  8. }
  9. //[Fact]
  10. //public async AddComment_ShouldReturn_200_Created_Always()
  11. //{
  12. // _commentService.Add
  13. //}
  14. }
  15. }