Integration testing an ASP.NET MVC application

前端 未结 3 723
傲寒
傲寒 2021-02-09 18:52

I need some advice about efficient way of writing integration tests for our current ASP.NET MVC application. Our architecture consists of:

  • A Service Layer below Co
3条回答
  •  执笔经年
    2021-02-09 19:13

    I'm using Ivonna for testing various levels of isolation. I'm able to test that a particular Url with some particular POST data hits the expected Action method with the expected arguments, and at the same time I'm able to stub/mock external services.

提交回复
热议问题