1.控制器测试 注意点: 1.控制器中不要包含业务逻辑 2.通过构造函数传递服务依赖 例:MathController中有一个Add的Action using FirstUnitTest.Services; using System.Web.Mvc; namespace FirstUnitTest.Controllers { public class MathController : Controller { IMathService _service; public MathControlle…