您最多选择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. }