選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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. }