解决方法
可能你可以,但是如果你将Page_Load方法的逻辑提取到模型类中然后单独测试它会更加清晰.
为什么?
>在其他页面中重用该方法的逻辑
>更好地分离模型和演示文稿
>更容易测试的清洁代码
样品:
// Home.aspx.cs Page_Load() { //Lots of code here } // or else Home.aspx.cs Page_Load() { Foo f = new Foo(); var result = f.DoThings(); } //Unit test Page_Load_FooDoesThings() { //Arrange Foo f = new Foo(); var expected = ...; //Act var actual = f.DoThings(); //Assert Assert.AreEqual(expected,actual) }