0

ModelState 在我的单元测试中总是返回 null。我希望有人能告诉我为什么。

给定以下控制器:

public class TestController : Controller
{
   public ViewResult Index()
    {
        return View();
    }
}

通过此测试,我的 ModelState 测试为 null:

public void ModelState_Is_Not_Null()
{
    TestController controller = new TestController();
    var result = controller.Index();

    // This test is failing:
    Assert.IsNotNull(controller.ViewData.ModelState);
}

如果我更改控制器以返回一个新的 ViewResult() 我不会得到空值:

public class TestController : Controller
{
  public ViewResult Index()
  {
    return new ViewResult();
  }
}

但是......如果我这样做,IsValid() 在不应该的时候返回 true:

public class TestController : Controller
{
   public ViewResult Index()
    {
        ModelState.AddModelError("Test", "This is an error");
        return new ViewResult();

        // I don't get null in the test for ModelState anymore, but IsValid()
        // returns true when it shouldn't
    }
}

我认为我在这里做的事情根本上是错误的,我不知道是什么。谁能指出我正确的方向?

4

1 回答 1

0

谢谢你检查,达林。

我安装了 MVC 1 RC 和 MVC 2 RC 2 版本。我卸载了它们,安装了 MVC 1,现在一切都按预期运行。测试没有失败。

于 2010-03-05T14:44:33.297 回答