c# – 我们可以在.aspx.cs页面中编写单元测试方法吗?

前端之家收集整理的这篇文章主要介绍了c# – 我们可以在.aspx.cs页面中编写单元测试方法吗?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我们可以在.aspx.cs页面中编写测试方法吗?
如果是,那怎么样?
我需要为Page_Load方法中的代码编写测试方法.
请建议是否有任何解决方案.

解决方法

可能你可以,但是如果你将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)
}

猜你在找的C#相关文章