如何在单元测试中检查模型属性

时间:2012-06-25 14:37:27

标签: c# asp.net-mvc-3 unit-testing razor moq

我有Action如下:

public ActionResult SaveAndExit()
{
    ViewModel1 viewModel = new ViewModel1();

    return View("Index", viewModel);
}

在单元测试中我想检查viewModel中的视图Reg是否为空。任何建议请

测试:

//act
var result = controller.SaveAndExit(viewModel) as ViewResult;

//assert
//Assert.IsNotNull(!result.Model["Reg"].Equals(null));

2 个答案:

答案 0 :(得分:9)

我倾向于按如下方式编写断言(在这里使用Microsoft测试框架断言 - 你没有指定nunit):

// Act
ActionResult result = controller.SaveAndExit(viewModel);

// Assert
Assert.IsInstanceOfType(result, typeof(ViewResult));
ViewResult viewResult = (ViewResult)result;

Assert.IsInstanceOfType(viewResult.Model, typeof(ViewModel1));
ViewModel1 model = (ViewModel1)viewResult.Model;

Assert.IsNotNull(model.Reg);

答案 1 :(得分:0)

单元测试应测试业务逻辑。您不需要编写单元测试只是为了检查某些属性为null。