8

RedirectToActionResult(成功!)またはViewResult(エラーメッセージで失敗)を返すコントローラーメソッドがあります。

ビジネスロジックが失敗した場合は、プロパティにエラーメッセージを追加しAddModelErrorます。

MSユニットテストでこれをテストする方法はありますか?Moqもありますが、それも役に立ちます。(ただし、このシナリオではMoqが必要だとは思いません)..Requestオブジェクトから何も使用していません。

4

2 に答える 2

7

うん、それを理解した。

// Arrange.
// .. whatever ..

// Act.
var viewResult = controller.Create(new Post()) as ViewResult;

// Assert.
Assert.IsNotNull(viewResult);
Assert.IsNotNull(viewResult.ViewData.ModelState["subject"]);
Assert.IsNotNull(viewResult.ViewData.ModelState["subject"].Errors);
Assert.IsTrue(viewResult.ViewData.ModelState["subject"].Errors.Count == 1);
于 2009-04-06T12:33:24.000 に答える
6

次のように、(ビューをテストせずに) Controller を直接テストすることもできます。

// Arrange.
// .. 

// Act.
controller.Create(new Post());  // missing UserName will invalidate Model with "Please specify your name" message

// Assert
Assert.IsTrue(! controller.ModelState.IsValid);
Assert.IsTrue(  controller.ModelState["UserName"].Errors.Any( modelError => modelError.ErrorMessage == "Please specify your name"));
于 2012-12-03T05:43:13.217 に答える