在我的 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);
}