0

私の Index.cshtml ページには、単体テストしたいパーシャル ビューがあります。これは、Index.cshtml のコードです。部分的なビューを作成するにはどうすればよいですか?

    [TestMethod]
    public void IndexUnitTest()
    {
        // Arrange 
        InspectionController controller = new InspectionController();
        // Act 
        ViewResult result = controller.Index("stringHere") as ViewResult;

        // Assert 
        Assert.IsNotNull(result);
        Assert.IsNotNull(result.ViewName); 
    }
4

2 に答える 2

0
[TestMethod]
    public void PartialViewUnitTest()
    {
        // Arrange 
        InspectionController controller = new InspectionController();
        // Act 
        PartialViewResult result = controller.SomePartialView("stringHere") as PartialViewResult;

        // Assert 
        Assert.IsNotNull(result);
        Assert.IsNotNull(result.ViewName); 
    }

上記を試してください

于 2013-11-07T01:08:13.157 に答える