我正在为控制器的方法进行单元测试。在以下方法中,我想检查返回类型是否为ViewResult
[HttpGet]
public ActionResult AddRepresentative(Guid businessUnitId)
{
var roles = Roles.GetAllRoles();
var model = new AddRepresentativeModel
{
BusinessUnitId = businessUnitId,
Roles = roles.Select(r => new SelectListItem
{
Value = r,
Text = r,
})
};
return View(model);
}
这就是我为测试所做的
[TestMethod]
public void AddRepresentative_Get_Action_RendersView()
{
var result = _controller.AddRepresentative(Guid.Empty);
Assert.IsInstanceOfType(result,typeof(ViewResult));
}
错误:
测试方法 AdminPortal.Tests.Controller_Test.Customer.BusinessUnitControllerTests.AddRepresentative_Get_Action_RendersView 抛出异常:System.Configuration.Provider.ProviderException:角色管理器功能尚未启用。
问题:在 HttpGet 方法中收集角色列表不是一个好习惯吗?
为了使测试通过,我需要在控制器或测试方法中进行一些更改吗?
出现错误是因为我使用的是 RhinoMock 吗?